blob: 0d61cca768db63ad16e5a3c2a2a18a773390c6da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
add_task(function* test() {
let uriString = "http://example.com/";
let cookieBehavior = "network.cookie.cookieBehavior";
let uriObj = Services.io.newURI(uriString, null, null)
let cp = Components.classes["@mozilla.org/cookie/permission;1"]
.getService(Components.interfaces.nsICookiePermission);
yield SpecialPowers.pushPrefEnv({ set: [[ cookieBehavior, 2 ]] });
cp.setAccess(uriObj, cp.ACCESS_ALLOW);
yield BrowserTestUtils.withNewTab({ gBrowser, url: uriString }, function* (browser) {
yield ContentTask.spawn(browser, null, function() {
is(content.navigator.cookieEnabled, true,
"navigator.cookieEnabled should be true");
});
});
cp.setAccess(uriObj, cp.ACCESS_DEFAULT);
});
|