diff options
Diffstat (limited to 'layout/base/tests/bug240933-1-ref.html')
-rw-r--r-- | layout/base/tests/bug240933-1-ref.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layout/base/tests/bug240933-1-ref.html b/layout/base/tests/bug240933-1-ref.html new file mode 100644 index 0000000000..778a0647b8 --- /dev/null +++ b/layout/base/tests/bug240933-1-ref.html @@ -0,0 +1,12 @@ +<!DOCTYPE HTML><html> +<body> +<textarea id="t" rows="4" style="-moz-appearance: none"> + +</textarea> +<script> + var t = document.getElementById("t"); + t.selectionStart = t.selectionEnd = t.value.length; + t.focus(); +</script> +</body> +</html> |