layout/reftests/bugs/931464-1.html

Wed, 31 Dec 2014 07:16:47 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:16:47 +0100
branch
TOR_BUG_9701
changeset 3
141e0f1194b1
permissions
-rw-r--r--

Revert simplistic fix pending revisit of Mozilla integration attempt.

     1 <!DOCTYPE html>
     2 <html class="reftest-wait">
     3 <body>
     4 <fieldset id="f" style="overflow: auto;"></fieldset>
     5 <script>
     6 function boom()
     7 {
     8   var f = document.getElementById("f");
     9   var s = document.createElement("span");
    10   s.textContent = "Hello Kitty";
    11   f.appendChild(s);
    12   document.documentElement.removeAttribute("class");
    13 }
    14 window.addEventListener("MozReftestInvalidate", boom);
    15 </script>
    16 </body>
    17 </html>

mercurial