blob: 6621ac0aa2507bd35098ad0d02c2b0d3bae84222 [file] [log] [blame]
<html>
<body>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
testRunner.setCanOpenWindows();
testRunner.setCloseRemainingWindowsWhenComplete(true);
}
</script>
<p>This test opens a HTTPS window that loads insecure data via XHR. We should
trigger a mixed content callback because the main frame in the window is HTTPS but
now has insecure data.</p>
<script>
onload = function() {
window.open("https://127.0.0.1:8443/security/mixedContent/resources/insecure-xhr-in-main-frame-window.html");
}
</script>
</body>
</html>