layout/reftests/bugs/513153-2a.html

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     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="submit">
    22       <input type="submit">
    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