743364.html (476B)
1 <!DOCTYPE html> 2 <html style="width: 1px;"> 3 <head> 4 <style> 5 p:first-letter { } 6 </style> 7 <script> 8 function boom() 9 { 10 var p = document.querySelector("p"); 11 document.documentElement.offsetHeight; 12 p.style.direction = "ltr"; 13 document.documentElement.offsetHeight; 14 p.style.letterSpacing = "-56px"; 15 document.documentElement.offsetHeight; 16 } 17 </script> 18 </head> 19 <body onload="boom();"> 20 <p style="direction: rtl; column-count: 3; white-space: pre-line;">x y 21 22 </p> 23 </body> 24 </html>