diff options
Diffstat (limited to 'layout/base/tests/textarea-minlength-ui-valid-change.html')
-rw-r--r-- | layout/base/tests/textarea-minlength-ui-valid-change.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/layout/base/tests/textarea-minlength-ui-valid-change.html b/layout/base/tests/textarea-minlength-ui-valid-change.html new file mode 100644 index 000000000..1449b5fa2 --- /dev/null +++ b/layout/base/tests/textarea-minlength-ui-valid-change.html @@ -0,0 +1,28 @@ +<!DOCTYPE HTML> +<html> + <!-- Test: textarea with minlength is -moz-ui-valid if the user edits and it's not too short --> + <head> + <style> + :-moz-ui-valid { background-color:green; } + :-moz-ui-invalid { background-color:red; } + * { background-color:white; } + </style> + <script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script> + <script> + function runTest() { + var textarea = document.getElementById('textarea'); + textarea.setSelectionRange(textarea.value.length, textarea.value.length) + textarea.focus(); + synthesizeKey('o', {}); // so that it becomes invalid first + textarea.blur(); + textarea.focus(); + synthesizeKey('o', {}); + textarea.blur(); // to hide the caret + document.documentElement.className=''; + } + </script> + </head> + <body onload="runTest()"> + <textarea id="textarea" minlength="3">f</textarea> + </body> +</html> |