gecko-dev/layout/base/tests/input-minlength-ui-invalid-change.html
Thomas Wisniewski fe6139c017 Bug 932755 - Add support for input/textarea minLength and tooShort. r=mrbkap
--HG--
extra : rebase_source : 064985cbb241ef8705dcec28f60db9f4caf65ae4
2016-08-17 00:11:24 -04:00

26 lines
751 B
HTML

<!DOCTYPE HTML>
<html>
<!-- Test: input with minlength is -moz-ui-invalid if the user edits and it's too short -->
<head>
<style>
:-moz-ui-valid { background-color:green; }
:-moz-ui-invalid { background-color:red; }
* { box-shadow:none; background-color:white; }
</style>
<script type="text/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<script>
function runTest() {
var input = document.getElementById('input');
input.focus();
synthesizeKey('o', {});
input.blur(); // to hide the caret
document.documentElement.className='';
}
</script>
</head>
<body onload="runTest()">
<input id="input" minlength="4" value="fo">
</body>
</html>