// Test that the Mixed Content Doorhanger Action to re-enable protection works const PREF_ACTIVE = "security.mixed_content.block_active_content"; var origBlockActive; add_task(function* () { registerCleanupFunction(function() { Services.prefs.setBoolPref(PREF_ACTIVE, origBlockActive); gBrowser.removeCurrentTab(); }); // Store original preferences so we can restore settings after testing origBlockActive = Services.prefs.getBoolPref(PREF_ACTIVE); // Make sure mixed content blocking is on Services.prefs.setBoolPref(PREF_ACTIVE, true); var url = "https://test1.example.com/browser/browser/base/content/test/general/" + "file_bug1045809_1.html"; let tab = gBrowser.selectedTab = gBrowser.addTab(); // Test 1: mixed content must be blocked yield promiseTabLoadEvent(tab, url); yield* test1(gBrowser.getBrowserForTab(tab)); yield promiseTabLoadEvent(tab); // Test 2: mixed content must NOT be blocked yield* test2(gBrowser.getBrowserForTab(tab)); // Test 3: mixed content must be blocked again yield promiseTabLoadEvent(tab); yield* test3(gBrowser.getBrowserForTab(tab)); }); function* test1(gTestBrowser) { assertMixedContentBlockingState(gTestBrowser, {activeLoaded: false, activeBlocked: true, passiveLoaded: false}); yield ContentTask.spawn(gTestBrowser, null, function() { var x = content.document.getElementsByTagName("iframe")[0].contentDocument.getElementById("mixedContentContainer"); is(x, null, "Mixed Content is NOT to be found in Test1"); }); // Disable Mixed Content Protection for the page (and reload) gIdentityHandler.disableMixedContentProtection(); } function* test2(gTestBrowser) { assertMixedContentBlockingState(gTestBrowser, {activeLoaded: true, activeBlocked: false, passiveLoaded: false}); yield ContentTask.spawn(gTestBrowser, null, function() { var x = content.document.getElementsByTagName("iframe")[0].contentDocument.getElementById("mixedContentContainer"); isnot(x, null, "Mixed Content is to be found in Test2"); }); // Re-enable Mixed Content Protection for the page (and reload) gIdentityHandler.enableMixedContentProtection(); } function* test3(gTestBrowser) { assertMixedContentBlockingState(gTestBrowser, {activeLoaded: false, activeBlocked: true, passiveLoaded: false}); yield ContentTask.spawn(gTestBrowser, null, function() { var x = content.document.getElementsByTagName("iframe")[0].contentDocument.getElementById("mixedContentContainer"); is(x, null, "Mixed Content is NOT to be found in Test3"); }); }