widget/cocoa/crashtests/373122-1-inner.html

branch
TOR_BUG_9701
changeset 10
ac0c01689b40
equal deleted inserted replaced
-1:000000000000 0:aa960b8d9293
1 <html>
2 <head>
3
4 <script>
5 function boom()
6 {
7 document.body.style.position = "fixed"
8
9 setTimeout(boom2, 1);
10 }
11
12 function boom2()
13 {
14 lappy = document.getElementById("lappy");
15 lappy.style.display = "none"
16
17 setTimeout(boom3, 200);
18 }
19
20 function boom3()
21 {
22 dump("Reloading\n");
23 location.reload();
24 }
25
26 </script>
27
28
29 </head>
30
31
32 <body bgcolor="black" onload="boom()">
33
34 <span style="overflow: scroll; display: -moz-box;"></span>
35
36 <embed id="lappy" src="" width=550 height=400 TYPE="application/x-shockwave-flash" ></embed>
37
38 </body>
39 </html>

mercurial