tor-browser

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

autoconfig.cfg (595B)


      1 // # don't remove this comment! (the first line is ignored by Mozilla)
      2 
      3 // Verify this one has a user value
      4 pref("_autoconfig_.test.userpref", "userpref");
      5 
      6 // Verify this one has a default pref
      7 defaultPref("_autoconfig_.test.defaultpref", "defaultpref");
      8 
      9 // Verify this one is locked
     10 lockPref("_autoconfig_.test.lockpref", "lockpref");
     11 
     12 lockPref("_autoconfig_.test.unlockpref", "unlockpref");
     13 // Verify this one is unlocked
     14 unlockPref("_autoconfig_.test.unlockpref");
     15 
     16 pref("_autoconfig_.test.clearpref", "clearpref");
     17 // Verify this one has no value
     18 clearPref("_autoconfig_.test.clearpref");