1
0
Fork 0
firefox/layout/base/tests/textarea-minlength-ui-valid-change.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

28 lines
920 B
HTML

<!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 src="/tests/SimpleTest/EventUtils.js"></script>
<script>
function runTest() {
var textarea = document.getElementById('textarea');
textarea.setSelectionRange(textarea.value.length, textarea.value.length)
textarea.focus();
sendString("o"); // so that it becomes invalid first
textarea.blur();
textarea.focus();
sendString("o");
textarea.blur(); // to hide the caret
document.documentElement.className='';
}
</script>
</head>
<body onload="runTest()">
<textarea id="textarea" minlength="3">f</textarea>
</body>
</html>