1 <p>This test verifies that you don't crash when adding an iframe to the document
2 from another iframe's onload handler.
5 <p>PASS: You didn't crash.
</p>
9 testRunner
.dumpAsText();
13 var iframe
= document
.createElement('iframe');
14 iframe
.src
= "about:blank";
15 document
.body
.appendChild(iframe
);
18 <iframe src=
"about:blank" onload=
"addFrame()"></iframe>