mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
58 lines
2.7 KiB
JavaScript
58 lines
2.7 KiB
JavaScript
/* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/ */
|
|
|
|
// The test loads a web page with mixed active and display content
|
|
// on it while the "block mixed content" settings are _on_.
|
|
// It then checks that the mixed content flags have been set correctly.
|
|
// The test then overrides the MCB settings and checks that the flags
|
|
// have been set correctly again.
|
|
// Bug 838396 - Not setting hasMixedDisplayContentLoaded and
|
|
// hasMixedDisplayContentBlocked flag in nsMixedContentBlocker.cpp
|
|
|
|
const TEST_URI = "https://example.com/browser/browser/base/content/test/test-mixedcontent-securityerrors.html";
|
|
let gTestBrowser = null;
|
|
|
|
function test()
|
|
{
|
|
waitForExplicitFinish();
|
|
SpecialPowers.pushPrefEnv({"set": [["security.mixed_content.block_active_content", true],
|
|
["security.mixed_content.block_display_content", true]]}, blockMixedContentTest);
|
|
}
|
|
|
|
function blockMixedContentTest()
|
|
{
|
|
gBrowser.selectedTab = gBrowser.addTab(TEST_URI);
|
|
let tab = gBrowser.selectedTab;
|
|
gTestBrowser = gBrowser.getBrowserForTab(tab);
|
|
|
|
gTestBrowser.addEventListener("load", function onLoad(aEvent) {
|
|
gTestBrowser.removeEventListener(aEvent.type, onLoad, true);
|
|
is(gTestBrowser.docShell.hasMixedDisplayContentBlocked, true, "hasMixedDisplayContentBlocked flag has been set");
|
|
is(gTestBrowser.docShell.hasMixedActiveContentBlocked, true, "hasMixedActiveContentBlocked flag has been set");
|
|
is(gTestBrowser.docShell.hasMixedDisplayContentLoaded, false, "hasMixedDisplayContentLoaded flag has been set");
|
|
is(gTestBrowser.docShell.hasMixedActiveContentLoaded, false, "hasMixedActiveContentLoaded flag has been set");
|
|
overrideMCB();
|
|
}, true);
|
|
}
|
|
|
|
function overrideMCB()
|
|
{
|
|
gTestBrowser.addEventListener("load", mixedContentOverrideTest, true);
|
|
var notification = PopupNotifications.getNotification("mixed-content-blocked", gTestBrowser);
|
|
ok(notification, "Mixed Content Doorhanger didn't appear");
|
|
// Click on the doorhanger to allow mixed content.
|
|
notification.secondaryActions[0].callback(mixedContentOverrideTest);
|
|
}
|
|
|
|
function mixedContentOverrideTest()
|
|
{
|
|
gTestBrowser.removeEventListener("load", mixedContentOverrideTest, true);
|
|
|
|
is(gTestBrowser.docShell.hasMixedDisplayContentLoaded, true, "hasMixedDisplayContentLoaded flag has not been set");
|
|
is(gTestBrowser.docShell.hasMixedActiveContentLoaded, true, "hasMixedActiveContentLoaded flag has not been set");
|
|
is(gTestBrowser.docShell.hasMixedDisplayContentBlocked, false, "second hasMixedDisplayContentBlocked flag has been set");
|
|
is(gTestBrowser.docShell.hasMixedActiveContentBlocked, false, "second hasMixedActiveContentBlocked flag has been set");
|
|
gBrowser.removeCurrentTab();
|
|
finish();
|
|
}
|