blob: 9c6e495da0d8c886cd4307b5d8f70f6fbc94e35c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
"use strict";
function makeURI(str) {
return Services.io.newURI(str);
}
add_task(async () => {
// Allow all cookies.
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
Services.prefs.setBoolPref(
"network.cookieJarSettings.unblocked_for_testing",
true
);
Services.prefs.setBoolPref("dom.security.https_first", false);
var uri = makeURI("http://example.com/");
var channel = NetUtil.newChannel({
uri,
loadUsingSystemPrincipal: true,
contentPolicyType: Ci.nsIContentPolicy.TYPE_DOCUMENT,
});
Services.scriptSecurityManager.createContentPrincipal(uri, {});
CookieXPCShellUtils.createServer({ hosts: ["example.com"] });
// Try an expiration time before the epoch
await CookieXPCShellUtils.setCookieToDocument(
uri.spec,
"test=test; path=/; domain=example.com; expires=Sun, 31-Dec-1899 16:00:00 GMT;"
);
Assert.equal(
await CookieXPCShellUtils.getCookieStringFromDocument(uri.spec),
""
);
// Now sanity check
Services.cookies.setCookieStringFromHttp(
uri,
"test2=test2; path=/; domain=example.com;",
channel
);
Assert.equal(
await CookieXPCShellUtils.getCookieStringFromDocument(uri.spec),
"test2=test2"
);
Services.prefs.clearUserPref("dom.security.https_first");
});
|