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

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/layout/reftests/bugs/703186-2-ref.html	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,29 @@
     1.4 +<!DOCTYPE html>
     1.5 +<html class="reftest-wait">
     1.6 +  <head>
     1.7 +    <script type="text/javascript">
     1.8 +      function init()
     1.9 +      {
    1.10 +        document.getElementById("link").focus();
    1.11 +        setTimeout(doTest, 0);
    1.12 +      }
    1.13 +
    1.14 +      function doTest()
    1.15 +      {
    1.16 +        document.getElementById("link").blur();
    1.17 +        setTimeout(finish, 0);
    1.18 +      }
    1.19 +
    1.20 +      function finish()
    1.21 +      {
    1.22 +        document.documentElement.removeAttribute("class");
    1.23 +      }
    1.24 +    </script>
    1.25 +  </head>
    1.26 +  <body onload="setTimeout(init, 0);">
    1.27 +    <img src="100x80-white-rect-top-right.png" usemap="#map">
    1.28 +    <map name="map">
    1.29 +      <area id="link" shape="rect" coords="10,10,30,30" href="about:blank">
    1.30 +    </map>
    1.31 +  </body>
    1.32 +</html>

mercurial