From 4596d721e6479aa2341554dc9e21cd999cd704a8 Mon Sep 17 00:00:00 2001 From: Thorin-Oakenpants Date: Fri, 26 Feb 2021 11:39:52 +0000 Subject: [PATCH] 2012: make webgl.min_capability_mode inactive - This is too minimal to be of any use, breaks too much (e.g. zoom video) - Tor browser stopped flipping this (I *think*) about 5 years ago: it certainly hasn't been used in ESR60+ based TB builds, I checked - we already disable webgl, so making this inactive removes yet another pref users need to flip/troubleshoot - I will leave it in the user js for a few releases so prefsCleaner will pick it up --- user.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/user.js b/user.js index 914889b..b7f0413 100644 --- a/user.js +++ b/user.js @@ -918,7 +918,7 @@ user_pref("media.peerconnection.ice.proxy_only_if_behind_proxy", true); // [FF70 user_pref("webgl.disabled", true); user_pref("webgl.enable-webgl2", false); /* 2012: limit WebGL ***/ -user_pref("webgl.min_capability_mode", true); + // user_pref("webgl.min_capability_mode", true); user_pref("webgl.disable-fail-if-major-performance-caveat", true); // [DEFAULT: true FF86+] /* 2022: disable screensharing ***/ user_pref("media.getusermedia.screensharing.enabled", false);