mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-23 04:43:07 +09:00
11 lines
302 B
JavaScript
11 lines
302 B
JavaScript
//
|
|
// Run test script in content process instead of chrome (xpcshell's default)
|
|
//
|
|
|
|
Cu.import("resource://gre/modules/Services.jsm");
|
|
|
|
function run_test() {
|
|
// Allow all cookies.
|
|
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
|
|
run_test_in_child("../unit/test_cookie_header.js");
|
|
}
|