tor-browser

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

test_cookiejars_wrap.js (379B)


      1 function run_test() {
      2  // Allow all cookies.
      3  Services.prefs.setBoolPref(
      4    "network.cookieJarSettings.unblocked_for_testing",
      5    true
      6  );
      7  Services.prefs.setBoolPref(
      8    "network.cookie.skip_browsing_context_check_in_parent_for_testing",
      9    true
     10  );
     11  Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
     12  run_test_in_child("../unit/test_cookiejars.js");
     13 }