layout/base/crashtests/372237-1.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:08b933bc2d61
1 <!DOCTYPE HTML>
2 <html class="reftest-wait">
3 <head>
4 <script>
5
6 function boom()
7 {
8 document.getElementById("b").style.overflow = "hidden";
9 setTimeout(boom2, 30);
10 }
11
12 function boom2()
13 {
14 document.getElementById("g").style.display = "none";
15 document.documentElement.removeAttribute("class");
16 }
17
18 </script>
19
20 </head>
21
22 <body onload="boom();">
23
24 <div style="float: left;">
25 <div id="b" style="display: -moz-box; border: 1px solid black;"><img width="16" height="16" src="../../../testing/crashtest/images/tree.gif"/></div>
26 <div style="position: fixed;"></div>
27 </div>
28
29 <div id="g" style="display: inline"><div></div></div>
30
31 </body>
32
33 </html>

mercurial