479938-1.html (526B)
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="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>