From: Michael Orlitzky Date: Fri, 13 Mar 2026 17:43:10 +0000 (-0400) Subject: tracking: move no-webgl entry to media X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=9d515fcefa753cb133693caca7bc03b80523adaf;p=firefox-user-prefs.git tracking: move no-webgl entry to media It's a better fit there. --- diff --git a/media b/media index 3639b26..5134f70 100644 --- a/media +++ b/media @@ -19,3 +19,14 @@ user_pref("permissions.default.xr", 2); /* Block audio AND video autoplay by default */ user_pref("media.autoplay.default", 5); + + +/* Disable WebGL. I actually don't need websites to be able to + * directly access my video hardware. + * + * References: + * + * 1. https://www.contextis.com/en/blog/webgl-a-new-dimension-for-browser-exploitation + * + */ +user_pref("webgl.disabled", true); diff --git a/tracking b/tracking index c2113d1..cc1c73e 100644 --- a/tracking +++ b/tracking @@ -68,16 +68,6 @@ user_pref("geo.enabled", false); user_pref("permissions.default.geo", 2); -/* Disable WebGL. I actually don't need websites to be able to - * directly access my video hardware. - * - * References: - * - * 1. https://www.contextis.com/en/blog/webgl-a-new-dimension-for-browser-exploitation - * - */ -user_pref("webgl.disabled", true); - /* Disable DNS-over-HTTPS (DoH), which is a helpful service that sends * all of your DNS requests to Cloudflare. DoH is presently disabled