This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
I get the error "Attribute maxlength is only allowed when the input type is email, password, search, tel, text, or url." for the following HTML: <!DOCTYPE html> <HTML> <HEAD><TITLE>x</TITLE></HEAD> <BODY> <INPUT TYPE='TEXT' MAXLENGTH='250'> </BODY></HTML> Changing the HTML to use "TYPE='text'" (lowercase) makes the error go away, which would indicate that the uppercase "TEXT" is not recognized correctly.