blob: dfdb69602c006832c8a5f0bfa2b0a17dcb7da905 (
plain)
1
2
3
4
5
6
7
8
9
|
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");
}
|