mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
55b948dec0
--HG-- extra : rebase_source : f486f39feac1fb743edc920618bec29884d515f1
14 lines
332 B
JavaScript
14 lines
332 B
JavaScript
//
|
|
// Run test script in content process instead of chrome (xpcshell's default)
|
|
//
|
|
|
|
const Cu = Components.utils;
|
|
|
|
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");
|
|
}
|