416107.xhtml (573B)
1 <html xmlns="http://www.w3.org/1999/xhtml"> 2 <head> 3 <script type="text/javascript"> 4 5 function boom() 6 { 7 var z = document.getElementById("z"); 8 var c = document.getElementById("c"); 9 10 z.removeChild(z.firstChild); 11 document.body.offsetHeight; 12 c.style.counterReset = "c"; 13 } 14 15 </script> 16 17 </head> 18 19 <body onload="boom();" style="font-family: monospace; width: 7ch;"> 20 21 <span style="margin: 8px;"></span> 22 23 <span style="position: relative;" id="z">OOO<span style="display: table-caption;">OOOOOO</span><span id="c" style="position: absolute;"></span></span> 24 25 </body> 26 </html>