Wed, 31 Dec 2014 07:16:47 +0100
Revert simplistic fix pending revisit of Mozilla integration attempt.
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 }
11 function doTest()
12 {
13 document.getElementById("link").blur();
14 setTimeout(finish, 0);
15 }
17 function finish()
18 {
19 document.documentElement.removeAttribute("class");
20 }
21 </script>
22 </head>
23 <body onload="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>