mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
b69450d2ea
MozReview-Commit-ID: 2srGXFmla07 --HG-- extra : transplant_source : %3Cn%D30%86%24%82%90%29%191%9C%8A%EB%0D%5D%E2%20%22%E5
17 lines
462 B
HTML
17 lines
462 B
HTML
<html class="reftest-wait">
|
|
<body onload="start()">
|
|
<textarea dir="rtl" onfocus="done()" style="-moz-appearance: none">s</textarea>
|
|
<script>
|
|
var textarea = document.querySelector("textarea");
|
|
function start() {
|
|
textarea.selectionStart = 0;
|
|
textarea.selectionEnd = 0;
|
|
textarea.focus();
|
|
}
|
|
function done() {
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</body>
|
|
</html>
|