mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
4bd2d83991
--HG-- extra : rebase_source : f486f39feac1fb743edc920618bec29884d515f1
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
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_cookiejars.js");
|
|
}
|