397007-1.html (546B)
1 <html> 2 <head> 3 <script type="text/javascript"> 4 function boom() 5 { 6 var img = document.createElement("img"); 7 document.getElementById("g").appendChild(img); 8 img.width = 1; 9 } 10 11 </script> 12 13 <style type="text/css"> 14 15 .margin { 16 margin: 1em 0; 17 } 18 19 .dd:before { 20 white-space: pre; 21 line-height: 0; 22 content: "b"; 23 } 24 25 </style> 26 27 </head> 28 29 <body onload="boom();"> 30 <div style="column-count: 2;"> 31 X 32 <div class="margin">y</div> 33 <span><span id="g"></span>­<div class="margin"></div><span class="dd"><div></div></span></span> 34 </div> 35 </body> 36 37 </html>