Commit 29ff5b01 authored by Richard Pospesel's avatar Richard Pospesel Committed by Georg Koppen
Browse files

Bug 26381: about:tor page does not load on first start on Windows and

 browser is stuck in endless reload cycle

The problem goes away when the security.sandbox.content.level pref is
set to 2.  This patch sets the option on Windows only to work around
this issue until the root cause is found and fixed.
parent 71c98f5d
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -330,6 +330,11 @@ pref("browser.onboarding.newtour", "welcome,privacy,tor-network,circuit-display,
pref("browser.onboarding.updatetour", "welcome,privacy,tor-network,circuit-display,security,expect-differences,onion-services");
pref("browser.onboarding.skip-tour-button.hide", true);

#ifdef XP_WIN
// For now, reduce sandboxing level to 2 (see #26381).
pref("security.sandbox.content.level", 2);
#endif

#ifdef TOR_BROWSER_VERSION
#expand pref("torbrowser.version", __TOR_BROWSER_VERSION__);
#endif