1
0
Fork 0
firefox/netwerk/test/unit_ipc/test_cookiejars_wrap.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

13 lines
379 B
JavaScript

function run_test() {
// Allow all cookies.
Services.prefs.setBoolPref(
"network.cookieJarSettings.unblocked_for_testing",
true
);
Services.prefs.setBoolPref(
"network.cookie.skip_browsing_context_check_in_parent_for_testing",
true
);
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
run_test_in_child("../unit/test_cookiejars.js");
}