1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
<html> <head> <style> ol { float: right; } </style> <script> function start() { document.elementFromPoint(0,1); document.dir = "rtl"; } </script> </head> <body> <svg onload="start()" requiredExtensions="x"> <g id="a"/></g> <text> <textPath xlink:href="#a"> </svg> <ol></ol> </body> </html>