blob: 44ae440b5aeb7e6643824548f01c3f002f5a3f7f [file] [log] [blame]
PASS if no timeout.
<iframe id="i"></iframe>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
i.contentDocument.open();
setTimeout(function() {
i.remove();
if (window.testRunner)
testRunner.notifyDone();
}, 0);
</script>