layout/generic/crashtests/444484-1.html

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:c4cafaf3f24c
1 <!DOCTYPE html>
2 <html>
3 <head>
4
5 <style type="text/css">
6
7 body:first-letter { float: right; }
8
9 </style>
10
11 <script type="text/javascript">
12
13 function boom()
14 {
15 var t = document.body.firstChild;
16 var se = document.getElementById("se");
17 se.appendChild(t); // !!!
18 document.body.appendChild(se);
19 se.appendChild(document.createTextNode(" "));
20 }
21
22 </script>
23 </head>
24
25 <body onload="boom();">&#xFEB7;
26 <div id="se" style="display: none;"></div></body>
27 </html>

mercurial