img
elements that are not used as source anchors conveys the same information as the image.
Question | Does the Alt text convey the same information as the image? |
---|---|
PASS | Alt text conveys the same information as the image. |
FAIL | Alt text does not convey the same information as the image. |
img
element that is not a source anchor and view the associated image and Alt text.img
element is contained by an a
(anchor) element and the a
(anchor) element has a valid href
attribute value then the image is a source anchor.img
elements that are not used as source anchors conveys the same information as the image.alt
attribute value so it conveys the same information as 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 #178 - Negative</title> </head> <body> <p><img src="rex.jpg" alt="a black and brown cat named Rex"/></p> </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 #178 - Positive</title> </head> <body> <p><img src="rex.jpg" alt="shoes and suits and clothing and ties"/></p> </body> </html>