Server-side image map
(Referring UWEM Test: 9.1_HTML_01)Test info
Failure cause
The inspected image is used as server-side image map
You used a server side image-map using the ismap attribute.
Why this may be a barrier
Server-side image maps do not support alternative text for each active region, which means that they can't be used on non-graphic user-agents.
Furthermore server-side image maps depend on mouse-interaction, which makes them unusable for people who use a keyboard to interact with the web site.
Good Example
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 //EN">
<html>
<head><title>Sample: Page with CLIENT SIDE IMAGE-MAP</title></head>
<body><img src="eGovMon_Logo.gif" alt="eGovMon – eGovernmant Monitor" usemap="eGovMon-map">
<map name="eGovMon-map"><area shape="rect" coords="1,1,20,20" href="http://ws.egovmon.no/" alt="eGovMon Project Webpage"/></map>
<area shape="rect" coords="20,1,40,20" href="http://egovmonet.eu/” alt="eGovMon Network Webpage"/></body>
</html>
Solution
Use a client side image-map.
References
Related WCAG 1.0 Checkpoint
9.1"Provide client-side image maps instead of serverside image maps except where the regions cannot be defined with an available geometric shape." [Priority 1]
WCAG 1.0 Checkpoint 9.1Referring UWEM Test
9.1_HTML_01This test is targeted to find server-side image maps.