diff options
Diffstat (limited to 'layout/base/tests/bug646382-2-ref.html')
-rw-r--r-- | layout/base/tests/bug646382-2-ref.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/layout/base/tests/bug646382-2-ref.html b/layout/base/tests/bug646382-2-ref.html new file mode 100644 index 000000000..fde995d41 --- /dev/null +++ b/layout/base/tests/bug646382-2-ref.html @@ -0,0 +1,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> |