no bug - Import translations from android-l10n r=release a=l10n CLOSED TREE
[gecko.git] / layout / reftests / bugs / 703186-2.html
blob9689ccddd5d118f9203e5124a44a337de80aca41
1 <!DOCTYPE html>
2 <html class="reftest-wait">
3 <head>
4 <script type="text/javascript">
5 function init()
7 window.addEventListener("blur", function (e) { e.stopPropagation(); },
8 true);
9 document.getElementById("link").focus();
10 setTimeout(doTest, 0);
13 function doTest()
15 document.getElementById("link").blur();
16 setTimeout(finish, 0);
19 function finish()
21 document.documentElement.removeAttribute("class");
23 </script>
24 </head>
25 <body onload="requestAnimationFrame(_ => setTimeout(init, 0));">
26 <img src="100x80-white-rect-top-right.png" usemap="#map">
27 <map name="map">
28 <area id="link" shape="rect" coords="10,10,30,30" href="about:blank">
29 </map>
30 </body>
31 </html>