Thu, 15 Jan 2015 15:55:04 +0100
Back out 97036ab72558 which inappropriately compared turds to third parties.
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>