blob: 2e993d6ae0c8727cac3db9539c4d4fcb0be28c04 [file] [log] [blame]
<html>
<body>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
testRunner.dumpFrameLoadCallbacks();
testRunner.setCanOpenWindows();
testRunner.setCloseRemainingWindowsWhenComplete(true);
}
window.addEventListener("message", function (e) {
if (window.testRunner)
testRunner.notifyDone();
}, false);
</script>
<p>This test opens a window iframe that loads an about:blank iframe. We should
*not* trigger a mixed content callback because the about:blank iframes cannot
be corrupted by active network attackers.</p>
<script>
onload = function() {
window.open("https://127.0.0.1:8443/security/mixedContent/resources/frame-with-about-blank-frame.html");
}
</script>
</body>
</html>