layout/reftests/bugs/421239-2.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 <head>
     4   <style>
     5     div#a { margin: 0px 0px 100px 0px;  }
     6   </style>
     7   <script>
     8   function boom()
     9   {
    10     var a = document.getElementById("a");
    11     a.removeChild(a.firstChild);
    12     document.documentElement.className = "";
    13   }
    14   </script>
    15 </head>
    16 <body onload="boom();">
    17   <div id="a">a</div>
    18   <div>b</div>
    19 </body>
    20 </html>

mercurial