Files
UXP-Fixed/layout/base/tests/input-maxlength-valid-before-change.html
T
2018-02-02 04:16:08 -05:00

16 lines
403 B
HTML

<!DOCTYPE HTML>
<html>
<!-- Test: input with maxlength is valid until the user edits it, even if it's too long -->
<head>
<style>
:valid { background-color:green; }
:invalid { background-color:red; }
* { background-color:white; }
</style>
</head>
<body onload="document.documentElement.className=''">
<input id="input" maxlength="2" value="foo">
</body>
</html>