зеркало из https://github.com/mozilla/gecko-dev.git
12 строки
344 B
JavaScript
12 строки
344 B
JavaScript
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
function run_test() {
|
|
// Allow all cookies.
|
|
Services.prefs.setBoolPref(
|
|
"network.cookieJarSettings.unblocked_for_testing",
|
|
true
|
|
);
|
|
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
|
|
run_test_in_child("../unit/test_cookiejars.js");
|
|
}
|