Mypal/layout/base/tests/bug646382-2-ref.html

15 lines
390 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.focus();
}
function done() {
document.documentElement.removeAttribute("class");
}
</script>
</body>
</html>