summaryrefslogtreecommitdiffstats
path: root/widget/cocoa/crashtests/373122-1-inner.html
blob: 5c14166b75d26301b83e7a221b78e369257708fe (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
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>

<script>
function boom()
{
  document.body.style.position = "fixed"
  
  setTimeout(boom2, 1);
}

function boom2()
{
  lappy = document.getElementById("lappy");
  lappy.style.display = "none"

  setTimeout(boom3, 200);
}

function boom3()
{
  dump("Reloading\n");
  location.reload();
}

</script>


</head>


<body bgcolor="black" onload="boom()">

  <span style="overflow: scroll; display: -moz-box;"></span>

  <embed id="lappy" src="" width=550 height=400 TYPE="application/x-shockwave-flash" ></embed>
 
</body>
</html>