3 testRunner
.dumpAsText();
8 iframe
= document
.createElement('iframe');
9 iframe
.setAttribute('marginwidth', 1);
10 document
.body
.appendChild(iframe
);
12 var bodyInFrame
= document
.createElement('body');
13 bodyInFrame
.addEventListener('DOMSubtreeModified', removeIframe
);
14 iframe
.contentDocument
.documentElement
.appendChild(bodyInFrame
);
15 document
.body
.innerHTML
= 'PASS if not crashed.';
18 function removeIframe() {
19 iframe
.parentNode
.removeChild(iframe
);
24 <body onload=
"start()">