input
element - Alt text should not be placeholder text.
input
element - Suspicious Alt text (placeholder).
input
elements cannot have alt
attribute values that are (case insensitive) (exactly) "image", (exactly) "photo" or (anywhere) "bytes".
Question | Is this Alt text appropriate for the image? |
---|---|
PASS | Alt text is appropriate for the image. |
FAIL | Alt text is not appropriate for the image. |
input
elements that have a type
attribute value of "image".\r\n2. Check the alt
attribute value of the input
element.alt
attribute value is expected to be different from common placeholder values.\r\n2. Common placeholder values are: "image", "photo" and any text with the word "bytes".alt
attribute value or confirm that the current alt
attribute value is appropriate for the image.input
alt
attribute is valid text.
<!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 #62 - Negative</title> </head> <body> <form> <label for="name">Name</label>: <br/><br/><input type="image" name="name" id="name" src="input.jpg" alt="input name"> </form> </body> </html>
input
alt
attribute is "image".
<!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 #62 - Positive</title> </head> <body> <form> <label for="name">Name</label>: <br/><br/><input type="image" name="name" id="name" src="name.jpg" alt="image"> </form> </body> </html>