layout/generic/crashtests/479938-1.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:ca7c8cee2566
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <script type="text/javascript">
5
6 function boom()
7 {
8 document.getElementById("x").style.padding = "67108863pc";
9 setTimeout(boom2, 0);
10 }
11
12 function boom2()
13 {
14 document.body.removeChild(document.getElementById("colset"));
15 document.documentElement.removeAttribute("class");
16 }
17
18 </script>
19 </head>
20
21 <body onload="boom();"> <div style="-moz-column-count: 2;" id="colset"><div style="height: 1px;"><div id="x"><div style="width: 1px;">A B C D</div></div></div></div> </body>
22
23 </html>

mercurial