822910.xhtml (437B)
1 <html xmlns="http://www.w3.org/1999/xhtml" style="white-space: pre;"> 2 <head> 3 <style> 4 5 #f:first-letter { } 6 #g:first-letter { float:left; } 7 8 </style> 9 <script> 10 11 function boom(id) 12 { 13 var text = document.getElementById(id).firstChild; 14 text.splitText(2); 15 document.documentElement.offsetHeight; 16 text.splitText(0); 17 } 18 19 </script> 20 </head> 21 <body onload="boom('f');boom('g');"> 22 23 24 <div id="f"> 25 26 X</div> 27 28 <div id="g"> 29 30 X</div> 31 32 33 </body> 34 </html>