layout/reftests/margin-collapsing/column-sibling-2b.html

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     4 <style type="text/css">
     5 #multi-column1, #multi-column2, #multi-column3 {
     6  -moz-column-count: 1;
     7  column-count: 1;
     8  height: 20px;
     9  background-color: blue;
    10 }
    11 #multi-column1 {
    12  margin-bottom: 20px;
    13 }
    14 #multi-column2 {
    15  margin: 10px 0;
    16 }
    17 #multi-column3 {
    18  margin-top: 20px;
    19 }
    20 </style>
    21 </head>
    22 <body>
    23 <div id="multi-column1"></div>
    24 <div id="multi-column2"></div>
    25 <div id="multi-column3"></div>
    26 </body>
    27 </html>

mercurial