summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/386939-1.html
blob: 345581d1007c4ba42934a341354893905ac56c0b (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
<html class="reftest-wait">
<head>
<script>

function rM(n)
{
  n.remove();
}

function boom()
{
  rM(document.getElementById("f1"));
  rM(document.getElementById("f2"));
  document.documentElement.removeAttribute("class");
}
</script>
</head>

<frameset rows="170,*" onload="setTimeout(boom, 30);">
<frame src="data:text/html,frame1" id="f1">
<frame src="data:text/html,frame2" id="f2">
</frameset>

</html>