img
element that contains ismap
attribute will generate this error.
Question | Does the document contain text links for all active areas of the imagemap? |
---|---|
PASS | Document contains text links for all active areas of the image map. |
FAIL | Document does not contain text links for all active areas of the image map. |
img
element containing an ismap
attribute, view the links in the server-side map.ismap
attribute with duplicate text links.
<?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> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>OAC Testfile - Check #132 - Negative</title> </head> <body> <p><img src="map.gif" ismap alt="map of the country"/></p> <p><a href="eastcoast.html">East Coast</a> | <a href="central.html">Central</a> | <a href="westcoast.html">West Coast</a></p> </body> </html>
ismap
attribute without duplicate text links.
<?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> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>OAC Testfile - Check #132 - Positive</title> </head> <body> <p><img src="map.gif" ismap alt="map of the country"/></p> </body> </html>