layout/reftests/bugs/513153-2b.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   <style>
     5     input { color: purple; }
     6     :default { font-size: 3em; color: green; }
     7   </style>
     8   <script type="text/javascript">
     9     function boom()
    10     {
    11       var toRemove = document.getElementById("toremove");
    12       toRemove.parentNode.removeChild(toRemove);
    13       document.documentElement.className = "";
    14     }
    15     window.addEventListener("MozReftestInvalidate", boom, false);
    16   </script>
    17 </head>
    18 <body>
    19   <form>
    20     <span id="toremove">
    21       <input type="image">
    22       <input type="image">
    23     </span>
    24     <input type="image" name="bar" value="bar">
    25     <input type="submit" name="foo" value="foo">
    26   </form>
    27 </body>
    28 </html>

mercurial