1 <p>This test checks for a crash that once happened in WebKit. The crash was caused
2 by an onload handler for a synchronously loaded iframe removing the iframe from the
5 <p>(For compatibility, WebKit loads about:blank and javascript: URLs synchronously).
8 <p>PASS: You didn't crash.
14 if (window
.testRunner
)
15 testRunner
.dumpAsText();
17 document
.getElementById('div').innerHTML
= '<iframe src="about:blank" onload="this.parentNode.removeChild(this)"></iframe>';