input
elements with a type
attribute value of "image" identifies the purpose or function of the image.
input
element may have Alt text that does not identify the purpose or function as the image.
input
element with type
of "image" must have Alt text that identifies the purpose or function of the image.
Question | Does the Alt text identify the purpose or function of the image? |
---|---|
PASS | Alt text identifies the purpose or function of the image. |
FAIL | Alt text does not identify the purpose or function of the image. |
input
elements that have a type
attribute value of "image".alt
attribute value of the input
element.input
elements with a type
attribute value of "image" identifies the purpose or function of the image.input
element, type
of "image", has Alt text that identifies the purpose or function of the image.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>ATRC Testfile - Check #59 - Negative</title> </head> <body> <form action="http://example.com" method="post"> <p><input type="image" name="submit" src="rex.jpg" alt="search for cats" /></p> </form> </body> </html>
input
element, type
of "image", has Alt text that does not identify the purpose or function of the image.
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>ATRC Testfile - Check #59 - Positive</title> </head> <body> <form action="http://example.com" method="post"> <p><input type="image" name="submit" src="rex.jpg" alt="A brown and black cat named Rex." /></p> </form> </body> </html>