input
should not use color alone.
input
possibly using color alone.
input
elements, except those with a type
of "hidden", will generate this error.
Question | Does this input element use color alone? |
---|---|
PASS | input element does not use color alone. |
FAIL | input element uses color alone. |
input
elements except those that have a type
attribute value of "hidden".input
elements are expected to avoid using color alone.input
element so it does not use color alone.input
element.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #55 - Negative</title> </head> <body> </body> </html>
input
element
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #55 - Positive</title> </head> <body> <form> <label for="name">Name:</label> <input type="text" name="name" id="name"></form> </body> </html>