534768-2.html (337B)
1 <html style="direction: rtl;"> 2 <head> 3 <style> 4 5 body:first-letter { float: right; } 6 7 </style> 8 <script> 9 10 function boom() 11 { 12 document.documentElement.style.direction = ""; 13 document.documentElement.offsetHeight; 14 document.documentElement.style.textIndent = "3px"; 15 } 16 17 </script> 18 </head> 19 20 <body onload="boom();"> ‮</body> 21 22 </html>