3 testRunner
.dumpAsText();
4 function iframeLoaded()
6 var iframe
= document
.getElementById("target");
7 iframe
.contentWindow
.addEventListener("resize", function(event
) {
8 iframe
.parentNode
.removeChild(iframe
);
11 iframe
.style
.height
= "600px";
15 Test for a crash that could occur when a frame
’s resize handler removed the frame.
17 <iframe onload=
"iframeLoaded()" id=
"target" src=
"data:text/html,"></iframe>