blob: 37bc86f12fc3bf041cf010ab86112373a54da915 (
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
|
add_task(async () => {
await SpecialPowers.pushPrefEnv({
set: [["security.mixed_content.upgrade_display_content", false]],
});
const testPath =
"https://example.com/browser/browser/base/content/test/favicons/file_insecure_favicon.html";
const expectedIcon =
"http://example.com/browser/browser/base/content/test/favicons/file_favicon.png";
let tab = BrowserTestUtils.addTab(gBrowser, testPath);
gBrowser.selectedTab = tab;
let browser = tab.linkedBrowser;
let faviconPromise = waitForLinkAvailable(browser);
await BrowserTestUtils.browserLoaded(browser);
let iconURI = await faviconPromise;
is(iconURI, expectedIcon, "Got correct icon.");
ok(
gIdentityHandler._isMixedPassiveContentLoaded,
"Should have seen mixed content."
);
BrowserTestUtils.removeTab(tab);
});
|