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