input-minlength-valid-before-change.html (404B)
1 <!DOCTYPE HTML> 2 <html> 3 <!-- Test: input with minlength is valid until the user edits it, even if it's too short --> 4 <head> 5 <style> 6 :valid { background-color:green; } 7 :invalid { background-color:red; } 8 * { background-color:white; } 9 </style> 10 </head> 11 <body onload="document.documentElement.className=''"> 12 <input id="input" minlength="5" value="foo"> 13 </body> 14 </html>