blob: 0bd35235742fc9b2ce9c7ed4bbc6caa5a9446e07 [file] [log] [blame]
<script>
if (window.testRunner)
testRunner.dumpAsText();
window.onload = function() {
// Navigate the iframe from onload, so that it happens after all loading
// logs from the main frame are complete. This avoids log ordering races
// if the iframe is loaded in another process due to site isolation.
var i = document.createElement("iframe");
i.name = "f1";
i.src = "this-is-definitely-a-bad-uri-scheme:";
document.body.appendChild(i);
}
</script>
This is a test of load callbacks. It is only useful inside the regression test tool.<br>