layout/generic/crashtests/397187-1.html

branch
TOR_BUG_9701
changeset 15
b8a032363ba2
equal deleted inserted replaced
-1:000000000000 0:acac15a4e3cf
1 <html class="reftest-wait">
2 <head>
3 <style type="text/css">
4
5 .a:first-letter { float: right; }
6
7 </style>
8 <script type="text/javascript">
9
10 function boom()
11 {
12 document.body.style.overflow = "auto";
13 document.body.className = "a";
14
15 setTimeout(boom2, 30);
16 }
17
18 function boom2()
19 {
20 var span = document.createElement("span");
21 document.body.appendChild(span);
22
23 document.documentElement.removeAttribute("class");
24 }
25
26 </script>
27 </head>
28
29 <body onload="boom();">&#65207;
30 </body>
31
32 </html>

mercurial