6 testRunner
.dumpAsText();
10 var theFrame
= document
.getElementById('lbIframe');
12 document
.body
.removeChild(theFrame
);
14 var objIframe
= document
.createElement("iframe");
15 objIframe
.setAttribute('id','lbIframe');
16 document
.body
.appendChild(objIframe
);
22 <body onload=
"loaded();">
23 This is a test for
5823684. If onload handlers aggressively remove and create new iframes in a particular way, we would crash because the frames hadn't been installed into the frame tree correctly before the frame tree was being manipulated.
<br>
24 If you do not crash, you have passed this test.
<br>
25 <iframe src=
"resources/frame-creation-removal-iframe.html"></iframe>