Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / images / imagemap-focus-ring-zoom.html
blob55c22b13b1590b4df7f1a6c1e11174a312c601a1
1 <html>
2 <head>
3 <script>
4 window.onload = function()
6 document.getElementById("area").focus();
8 if (!window.eventSender)
9 return;
11 eventSender.zoomPageIn();
12 eventSender.zoomPageIn();
14 </script>
15 </head>
16 <body>
17 This test can be used to ensure that a focus ring is drawn correctly for an imagemap even when the page is zoomed. This test PASSED if a focus ring is drawn around the &lt;area&gt; in the imagemap to the right.
18 <map name="imagemap">
19 <area id="area" shape="rect" coords="0,0,128,128" href="#dummy" />
20 </map>
21 <img width="128" height="128" usemap="#imagemap" ismap />
22 </body>
23 </head>
24 </html>