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(finish, 0);
9 }
11 function finish()
12 {
13 document.documentElement.removeAttribute("class");
14 }
15 </script>
16 </head>
17 <body onload="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>