blob: b40c06f027421c1a0a7ca98bff551d2387ed5ccd [file] [edit]
<!-- webkit-test-runner [ SiteIsolationEnabled=true ] -->
<script src="/js-test-resources/js-test.js"></script>
<script>
description("Verifies top-level navigation initiated by iframe can complete");
jsTestIsAsync = true;
function runTest()
{
if (window.location.hash == "#complete") {
testPassed("Main frame is navigated to new url: " + window.location.href);
finishJSTest();
return;
}
var iframe = document.createElement('iframe');
iframe.src = "http://localhost:8000/site-isolation/resources/iframe-top-level-navigation-iframe.html";
document.body.appendChild(iframe);
}
</script>
<body onload="runTest()"></body>