user.js

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 4596d721e6479aa2341554dc9e21cd999cd704a8
parent 911206eed57d4e389d6ff6df792136c79cc33cc1
Author: Thorin-Oakenpants <Thorin-Oakenpants@users.noreply.github.com>
Date:   Fri, 26 Feb 2021 11:39:52 +0000

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
Diffstat:
Muser.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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);