1221874-1.html (288B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="UTF-8"> 5 <script> 6 7 function boom() 8 { 9 document.documentElement.offsetHeight; 10 document.body.style.textOrientation = "sideways"; 11 } 12 13 </script> 14 </head> 15 <body onload="boom();" style="writing-mode: tb-rl; display: table;">Hello</body> 16 </html>