layout/reftests/bugs/703186-1-ref.html

branch
TOR_BUG_9701
changeset 3
141e0f1194b1
equal deleted inserted replaced
-1:000000000000 0:c2d232360d61
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 }
10
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>

mercurial