2011-04-08 11:35:49 +04:00
|
|
|
<html class="reftest-wait">
|
|
|
|
<body onload="start()">
|
2017-04-12 13:32:19 +03:00
|
|
|
<textarea dir="rtl" onfocus="done()"
|
2017-05-21 12:15:00 +03:00
|
|
|
style="-moz-appearance: none;
|
2017-04-12 13:32:19 +03:00
|
|
|
unicode-bidi: bidi-override;">s</textarea>
|
2011-04-08 11:35:49 +04:00
|
|
|
<script>
|
|
|
|
var textarea = document.querySelector("textarea");
|
|
|
|
function start() {
|
|
|
|
textarea.focus();
|
2017-04-12 13:32:19 +03:00
|
|
|
textarea.selectionStart = 1; // place caret after the letter
|
|
|
|
textarea.selectionEnd = 1;
|
2011-04-08 11:35:49 +04:00
|
|
|
}
|
|
|
|
function done() {
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|