img
element that does not have Alt text conveying the same information as the image.
img
element may require a long description.
img
element must contain a longdesc
attribute.
longdesc
attribute.
Question | Does this image require a long description and if so is the long description properly marked? |
---|---|
PASS | Image does not require a long description or a long description is provided. |
FAIL | Image requires a long description and is not properly marked. |
img
element, view the associated image and Alt text.longdesc
attribute for the img
element and the longdesc target text fully describes the image.img
element that does not have Alt text conveying the same information as the image.longdesc
attribute.
<?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 #8.2 - Negative</title> </head> <body> <p>The text in this document does not fully describe the image shown here but the image contains a longdesc attribute linking to a text file that does describe the image. <img src="chart.gif" alt="a complex chart" longdesc="chart.html"/></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 #8.1 - Positive</title> </head> <body> <p>The text in this document does not fully describe the complex image shown here. <img src="chart.gif" alt="a complex chart" /></p> </body> </html>