Created attachment 459351 [details] webkit screenshot reproduciable example: https://codepen.io/chijinz/pen/VwQmyEe version: all webkit products (including Safari) Description: When setting the writing-mode of a table header element to "vertical-rl", the text in the header is not presented vertically. Chrome works fine with this example.
Created attachment 459352 [details] chrome screenshot
code: ``` <html> <head> <style> </style> <script> function jsfuzzer() { document.getElementById("htmlvar00006").style["writing-mode"] = "vertical-rl" } </script> </head> <body onload=jsfuzzer()> <table> <th id="htmlvar00006">aaaaaaaaabbbbbbbbbbbbcccccccccc</th> </table> </body> </html> ```
<rdar://problem/93703409>
*** This bug has been marked as a duplicate of bug 65917 ***