summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/814995.html
blob: 238fc3960b7f82c77cfae152f4dc9435a290d95e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<html class="reftest-wait">
<script>
function start() {
tmp = document.createElement('iframe');
document.documentElement.appendChild(tmp);
window.setTimeout('second()',100);
}

function second() {
tmp.contentDocument.removeChild(tmp.contentDocument.childNodes[0]);
o988=document.createElement('frameset');
o1051=document.createElement('frameset');
tmp.contentDocument.appendChild(o1051);
tmp.contentDocument.documentElement.appendChild(o988);

document.documentElement.removeAttribute("class");
}
</script>
<body onload="start()"></body>
</html>