blob: 7a9a10a1f9f0428ca60acebe4c48abe6561de41e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<html class="reftest-wait">
<head>
<title>Crash testcase</title>
<script>
function foo()
{
document.body.appendChild(document.createElement('frameset'));
setTimeout(bar, 30);
}
function bar()
{
document.body.style.display = '-moz-box';
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(foo, 30);">
</body>
</html>
|