summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/307979-1.html
blob: eb73d12153944b487226a0081d83ada56081fb9e (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-groupbox';
  document.documentElement.removeAttribute("class");
}

</script>

</head>

<body onload="setTimeout(foo, 30);">

</body>
</html>