blob: e37af5386c1ba4945256b0c0b403172ae1279799 [file] [log] [blame]
<!DOCTYPE html>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
testRunner.setCanOpenWindows();
testRunner.overridePreference("WebKitAllowRunningInsecureContent", true);
}
window.addEventListener("message", function (e) {
if (window.testRunner)
testRunner.notifyDone();
}, false);
</script>
<p>This test opens a window that loads a style sheet which fetches an insecure
background image and an insecure web font. We should trigger a mixed content
callback because the main frame in the window is HTTPS but is running insecure
content.</p>
<script>
window.open("https://127.0.0.1:8443/security/mixedContent/resources/frame-with-insecure-css-resources.html");
</script>