layout/reftests/bugs/703186-1.html

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

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         window.addEventListener("focus", function (e) { e.stopPropagation(); },
     8                                 true);
     9         document.getElementById("link").focus();
    10         setTimeout(finish, 0);
    11       }
    13       function finish()
    14       {
    15         document.documentElement.removeAttribute("class");
    16       }
    17     </script>
    18   </head>
    19   <body onload="setTimeout(init, 0);">
    20     <img src="100x80-white-rect-top-right.png" usemap="#map">
    21     <map name="map">
    22       <area id="link" shape="rect" coords="10,10,30,30" href="about:blank">
    23     </map>
    24   </body>
    25 </html>

mercurial