haikuwebkit/LayoutTests/fast/frames/crash-remove-iframe-during-...

18 lines
484 B
HTML

<html>
<head>
<script>
if (window.testRunner) {
testRunner.dumpAsText();
testRunner.waitUntilDone();
}
</script>
</head>
<body>
<div>This tests if removing the iframe, while the iframe's object's beforeload is executed is safe.</div>
<div>PASS if no crash is observed, while loading iframe.</div>
<iframe onload='setTimeout("if (window.testRunner) testRunner.notifyDone()", 100);'
src='resources/remove-this-during-object-beforeload.html'></iframe>
</body>
</html>