tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

user.js (912B)


      1 /* This Source Code Form is subject to the terms of the Mozilla Public
      2 * License, v. 2.0. If a copy of the MPL was not distributed with this
      3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      4 
      5 // This is useful for testing a pref on try.
      6 /* globals user_pref */
      7 // ensure webrender is set (and we don't need MOZ_WEBRENDER env variable)
      8 user_pref("gfx.webrender.all", true);
      9 user_pref("dom.input_events.security.minNumTicks", 0);
     10 user_pref("dom.input_events.security.minTimeElapsedInMS", 0);
     11 
     12 // Set address autofill to true for tests
     13 user_pref("extensions.formautofill.addresses.experiments.enabled", true);
     14 
     15 // Turn off update
     16 user_pref("app.update.disabledForTesting", true);
     17 
     18 // Browser restarts can cause the session restore suggestion to be shown when reusing a
     19 // profile across a set of tests. Avoid showing this infobar by default.
     20 user_pref("browser.startup.couldRestoreSession.count", -1);