blob: fde995d41d7957fcfe40681625cf55739cc0b14b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<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.focus();
}
function done() {
document.documentElement.removeAttribute("class");
}
</script>
</body>
</html>
|