2016-08-17 07:11:24 +03:00
|
|
|
<!DOCTYPE HTML>
|
|
|
|
<html>
|
|
|
|
<!-- Test: textarea with maxlength is -moz-ui-valid if the user edits and it's not too long -->
|
|
|
|
<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');
|
2017-03-01 16:35:08 +03:00
|
|
|
textarea.setSelectionRange(textarea.value.length, textarea.value.length)
|
2016-08-17 07:11:24 +03:00
|
|
|
textarea.focus();
|
|
|
|
synthesizeKey('VK_BACK_SPACE', {}); // so that it becomes invalid first
|
|
|
|
textarea.blur();
|
|
|
|
textarea.focus();
|
|
|
|
synthesizeKey('VK_BACK_SPACE', {});
|
|
|
|
textarea.blur(); // to hide the caret
|
|
|
|
document.documentElement.className='';
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body onload="runTest()">
|
|
|
|
<textarea id="textarea" maxlength="3">foooo</textarea>
|
|
|
|
</body>
|
|
|
|
</html>
|