bug646382-2-ref.html (552B)
1 <html class="reftest-wait"> 2 <body onload="start()"> 3 <textarea dir="rtl" onfocus="done()" 4 style="-moz-appearance: none; 5 unicode-bidi: bidi-override;">s</textarea> 6 <script> 7 var textarea = document.querySelector("textarea"); 8 function start() { 9 textarea.focus(); 10 textarea.selectionStart = 1; // place caret after the letter 11 textarea.selectionEnd = 1; 12 } 13 function done() { 14 document.documentElement.removeAttribute("class"); 15 } 16 </script> 17 </body> 18 </html>