layout/reftests/margin-collapsing/block-no-content-3a.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>
     3 <head>
     4 <style type="text/css">
     5 #separator {
     6  height: 20px;
     7  background-color: green;
     8 }
     9 #parent {
    10  background-color: green;
    11  margin-top: 10px;
    12 }
    13 #first-child {
    14  margin-top: 20px;
    15  margin-bottom: 30px;
    16 }
    17 #last-child {
    18  height: 20px;
    19  margin-top: 15px;
    20 }
    21 </style>
    22 </head>
    23 <body>
    24 <div id="separator"></div>
    25 <div id="parent">
    26  <div id="first-child"></div>
    27  <div id="last-child"></div>
    28 </div>
    29 </body>
    30 </html>

mercurial