input
elements with a type
attribute value of "image" contains all non decorative text in the image.
input
elements that have a type
of "image".
Question | Is any text within the image also in the Alt text unless text is decorative? |
---|---|
PASS | Any text in image is also in Alt text or text in image is decorative. |
FAIL | Image contains text that is not in Alt text. |
input
element that has a type
attribute value of "image", check if the associated image contains any text.input
elements with a type
attribute value of "image" contains all non decorative text in 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>OAC Testfile - Check #193 - Negative</title> </head> <body> <form action="http://example.com/prog/text-read" method="post"> <p><input type="image" name="submit" src="finddogs.gif" alt="find dogs" /></p> </form> </body> </html>
<?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>OAC Testfile - Check #193 - Positive</title> </head> <body> <form action="http://example.com/prog/text-read" method="post"> <p><input type="image" name="submit" src="finddogs.gif" alt="submit" /></p> </form> </body> </html>