703186-2-ref.html (706B)
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(doTest, 0); 9 } 10 11 function doTest() 12 { 13 document.getElementById("link").blur(); 14 setTimeout(finish, 0); 15 } 16 17 function finish() 18 { 19 document.documentElement.removeAttribute("class"); 20 } 21 </script> 22 </head> 23 <body onload="requestAnimationFrame(_ => setTimeout(init, 0));"> 24 <img src="100x80-white-rect-top-right.png" usemap="#map"> 25 <map name="map"> 26 <area id="link" shape="rect" coords="10,10,30,30" href="about:blank"> 27 </map> 28 </body> 29 </html>