textarea-minlength-valid-before-change.html (415B)
1 <!DOCTYPE HTML> 2 <html> 3 <!-- Test: textarea 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 <textarea id="textarea" minlength="5">foo</textarea> 13 </body> 14 </html>