layout/reftests/margin-collapsing/table-sibling-1-noref2.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>
     3 <head>
     4 <style type="text/css">
     5 #block1 {
     6  display: block;
     7  height: 20px;
     8  background-color: green;
     9  margin-bottom: 40px;
    10 }
    11 #table {
    12  display: table;
    13  height: 20px; width: 100px;
    14  background-color: red;
    15  margin-bottom: 40px;
    16 }
    17 #block2 {
    18  display: block;
    19  height: 20px;
    20  background-color: blue;
    21 }
    22 </style>
    23 </head>
    24 <body>
    25 <div id="block1"></div>
    26 <div id="table"></div>
    27 <div id="block2"></div>
    28 </body>
    29 </html>

mercurial