mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 22:28:59 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D21697 --HG-- extra : moz-landing-system : lando
8 lines
327 B
JavaScript
8 lines
327 B
JavaScript
const {Services} = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
function run_test() {
|
|
// Allow all cookies.
|
|
Services.prefs.setBoolPref("network.cookieSettings.unblocked_for_testing", true);
|
|
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
|
|
run_test_in_child("../unit/test_cookiejars.js");
|
|
}
|