gecko-dev/servo/tests/html/test_img_ismap.html
Shing Lyu 49cd60f66d servo: Merge #5593 - 4873 - Support the image map processing for <img ismap/> inside an <a/> (from shinglyu:ismap); r=jdm
This implements issue 4873

Source-Repo: https://github.com/servo/servo
Source-Revision: 4fac8b6810d9d748fffc025cfd1bb1d2b6c5655d
2015-04-14 00:10:08 -05:00

18 lines
433 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>img element ismap activation test</title>
</head>
<body>
<p>Click my nose to get the coordinates!</p>
<a href="test_img_ismap.html">
<img src="andreas.jpeg" alt="andreas" ismap/>
</a>
<p>Nothing happends if you click my nose</p>
<a href="test_img_ismap.html">
<img src="andreas.jpeg" alt="andreas"/>
</a>
</body>
</html>