Source code

Revision control

Copy as Markdown

Other Tools

Test Info: Warnings

// Tests third party cookie blocking using a favicon loaded from a different
// domain. The cookie should be considered third party.
"use strict";
add_task(async function () {
const iconUrl =
const pageUrl =
await SpecialPowers.pushPrefEnv({
set: [["network.cookie.cookieBehavior", 1]],
});
let promise = TestUtils.topicObserved("cookie-rejected", subject => {
let uri = subject.QueryInterface(Ci.nsIURI);
return uri.spec == iconUrl;
});
// Kick off a page load that will load the favicon.
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser, pageUrl);
registerCleanupFunction(async function () {
BrowserTestUtils.removeTab(tab);
});
await promise;
ok(true, "foreign favicon cookie was blocked");
});