<!DOCTYPEHTML>
<html> <!-- Test: input 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 src="/tests/SimpleTest/EventUtils.js"></script>
<script>
function runTest() { varinput = document.getElementById('input'); input.setSelectionRange(input.value.length, input.value.length) input.focus();
synthesizeKey("KEY_Backspace"); // so that it becomes invalid first input.blur(); input.focus();
synthesizeKey("KEY_Backspace"); input.blur(); // to hide the caret
document.documentElement.className='';
}
</script>
</head>
<body onload="runTest()">
<input id="input" maxlength="3" value="foooo">
</body>
</html>
Messung V0.5
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.