<html>
<body>
<script>
if (window.testRunner) {
testRunner.waitUntilDone();
testRunner.dumpAsText();
testRunner.setPopupBlockingEnabled(false);
testRunner.overridePreference("WebKitAllowRunningInsecureContent", false);
}
window.addEventListener("message", function (e) {
if (window.testRunner)
testRunner.notifyDone();
}, false);
</script>
<p>This test opens a window that loads an insecure track. We should
trigger a mixed content callback as the main frame in the window
is HTTPS and is running insecure track.</p>
<script>
window.open("https://127.0.0.1:8443/security/mixedContent/resources/frame-with-insecure-texttrack.html");
</script>
</body>
</html>