layout/reftests/margin-collapsing/block-non-sibling-2e-dyn.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 type="text/css">
     5 #a {
     6  background-color: green;
     7  margin-bottom: 40px;
     8  height: 20px;
     9 }
    10 #b {
    11  background-color: green;
    12  margin-top: 10px;
    13 }
    14 #b div {
    15  display: none;
    16  height: 20px;
    17  margin-top: 20px;
    18 }
    19 </style>
    20 <script type="text/javascript">
    21 function test() {
    22  document.getElementsByTagName('div')[2].style.display = 'block';
    23  document.documentElement.removeAttribute('class');
    24 }
    25 document.addEventListener('MozReftestInvalidate', test, false);
    26 </script>
    27 </head>
    28 <body>
    29 <div id="a">
    30 </div>
    31 <div id="b">
    32  <div></div>
    33 </div>
    34 </body>
    35 </html>

mercurial