703186-1-ref.html (586B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <head> 4 <script type="text/javascript"> 5 function init() 6 { 7 document.getElementById("link").focus(); 8 setTimeout(finish, 0); 9 } 10 11 function finish() 12 { 13 document.documentElement.removeAttribute("class"); 14 } 15 </script> 16 </head> 17 <body onload="requestAnimationFrame(_ => setTimeout(init, 0));"> 18 <img src="100x80-white-rect-top-right.png" usemap="#map"> 19 <map name="map"> 20 <area id="link" shape="rect" coords="10,10,30,30" href="about:blank"> 21 </map> 22 </body> 23 </html>