forked from mirrors/gecko-dev
Backed out changeset 346d3a1568dd (bug 1834222) Backed out changeset ea1d8b634bfc (bug 1834176) Backed out changeset 74d1880272d3 (bug 1834176)
30 lines
911 B
JavaScript
30 lines
911 B
JavaScript
const { NetUtil } = ChromeUtils.import("resource://gre/modules/NetUtil.jsm");
|
|
|
|
function inChildProcess() {
|
|
return Services.appinfo.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);
|
|
Services.prefs.setBoolPref(
|
|
"network.cookieJarSettings.unblocked_for_testing",
|
|
true
|
|
);
|
|
}
|
|
|
|
let uri = NetUtil.newURI("http://example.org/");
|
|
let channel = NetUtil.newChannel({
|
|
uri,
|
|
loadUsingSystemPrincipal: true,
|
|
contentPolicyType: Ci.nsIContentPolicy.TYPE_DOCUMENT,
|
|
});
|
|
|
|
let set = "foo=bar";
|
|
Services.cookies.setCookieStringFromHttp(uri, set, channel);
|
|
|
|
let expected = "foo=bar";
|
|
let actual = Services.cookies.getCookieStringFromHttp(uri, channel);
|
|
Assert.equal(actual, expected);
|
|
}
|