gecko-dev/layout/base/tests/input-minlength-ui-valid-change.html
Masayuki Nakano cf83ee7bb4 Bug 1438157 - part 2: Remove unnecessary second argument of EventUtils.synthesizeKey() r=smaug
Note that this patch also replaces legacy VK_* with KEY_*, and replaces
synthesizeKey() for inputting some characters with sendString() because
it's better and clearer what it does and it sets shiftKey state properly.

MozReview-Commit-ID: De4enbjux3T

--HG--
extra : rebase_source : 2296b84bff8e22f01eeb48cd8614fac5db11136a
2018-02-15 04:15:39 +09:00

29 lines
905 B
HTML

<!DOCTYPE HTML>
<html>
<!-- Test: input 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 input = document.getElementById('input');
input.setSelectionRange(input.value.length, input.value.length)
input.focus();
sendString("o"); // so that it becomes invalid first
input.blur();
input.focus();
sendString("o");
input.blur(); // to hide the caret
document.documentElement.className='';
}
</script>
</head>
<body onload="runTest()">
<input id="input" minlength="3" value="f">
</body>
</html>