blob: 4923838357bc4dd9e07e770d8723d6fa2558773d [file] [log] [blame]
<html>
<body>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
testRunner.setCanOpenWindows();
testRunner.overridePreference("WebKitStrictMixedContentChecking", true);
}
window.addEventListener("message", function (e) {
if (window.testRunner)
testRunner.notifyDone();
}, false);
</script>
<p>This test opens a window that loads an insecure image. We should not
trigger a mixed content callback because we've set the preference to block all
mixed content, including passive content.</p>
<script>
window.open("https://127.0.0.1:8443/security/mixedContent/resources/frame-with-insecure-image.html");
</script>
</body>
</html>