|
1 <!DOCTYPE html> |
|
2 <html style="width: 1px;"> |
|
3 <head> |
|
4 <script type="text/javascript"> |
|
5 |
|
6 function boom() |
|
7 { |
|
8 document.documentElement.appendChild(document.body); |
|
9 document.documentElement.offsetHeight; |
|
10 var v = document.getElementById("v"); |
|
11 v.parentNode.removeChild(v); |
|
12 var w = document.createElement("span"); |
|
13 document.body.insertBefore(w, document.body.lastChild); |
|
14 } |
|
15 |
|
16 </script> |
|
17 </head> |
|
18 |
|
19 <body onload="boom();"><div></div><div style="height: 1px;"><span><div id="v"></div></span><div style="-moz-column-count: 2;">A<div style="margin: 67108863ch 0pt;">B</div><div>C</div></div></div><span></span></body> |
|
20 </html> |