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
30 lines
928 B
JavaScript
30 lines
928 B
JavaScript
const Cc = Components.classes;
|
|
const Ci = Components.interfaces;
|
|
|
|
Components.utils.import("resource://gre/modules/NetUtil.jsm");
|
|
Components.utils.import("resource://gre/modules/Services.jsm");
|
|
|
|
function inChildProcess() {
|
|
return Cc["@mozilla.org/xre/app-info;1"]
|
|
.getService(Ci.nsIXULRuntime)
|
|
.processType != Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT;
|
|
}
|
|
|
|
function run_test() {
|
|
// Allow all cookies if the pref service is available in this process.
|
|
if (!inChildProcess())
|
|
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
|
|
|
|
let cs = Cc["@mozilla.org/cookieService;1"].getService(Ci.nsICookieService);
|
|
|
|
let uri = NetUtil.newURI("http://example.org/");
|
|
|
|
let set = "foo=b;max-age=3600, c=d;path=/";
|
|
cs.setCookieStringFromHttp(uri, null, null, set, null, null);
|
|
|
|
let expected = "foo=b";
|
|
let actual = cs.getCookieStringFromHttp(uri, null, null);
|
|
do_check_eq(actual, expected);
|
|
}
|
|
|