commit c659c00756a77d0ca923aa21ca4e429deec3b3c5 Author: Georg Koppen gk@torproject.org Date: Thu Apr 21 11:01:00 2016 +0000
fixup! TB4: Tor Browser's Firefox preference overrides.
We want to be sure mozTCPSocket is really disabled (bug 18863). --- browser/app/profile/000-tor-browser.js | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/browser/app/profile/000-tor-browser.js b/browser/app/profile/000-tor-browser.js index e98e5c4..fbe6fb4 100644 --- a/browser/app/profile/000-tor-browser.js +++ b/browser/app/profile/000-tor-browser.js @@ -202,6 +202,8 @@ pref("devtools.debugger.chrome-debugging-host", "127.0.0.1"); // is |true|. This helps to avoid confusion e.g. in case the browser is // sandboxed. See bug 17502 for details. pref("browser.download.forbid_open_with", false); +// Disable mozTCPSocket for sure (bug 18863) +pref("dom.mozTCPSocket.enabled", false);
// Security slider pref("svg.in-content.enabled", true);
tor-commits@lists.torproject.org