layout/reftests/bugs/391979.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><head>
     3     <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
     4     <title>Testcase for bug 391979</title>
     5     <style type="text/css">
     7         html,body {
     8             color:black; background-color:white; font-size:16px; padding:0; margin:0;
     9         }
    11         .float { float:left; clear:both; }
    12         .t1 { -moz-column-count:2; -moz-column-width: 9ch; -moz-column-gap: 2ch; background:red; height:4ch; }
    14         .abs { position:absolute; width:20ch; height:4ch; }
    16         .red { background:red; }
    17         .green { background:green; }
    18     </style>
    19 </head>
    20 <body>
    21 <div class="abs green" style="left:0; top:0;">green</div>
    22 <div class="abs red" style="left:0; top:4ch; z-index:-1;">green</div>
    23 <div class="abs green" style="left:0; top:8ch; z-index:2;">green</div>
    24 <div class="abs red" style="left:0; top:12ch;">green</div>
    26 <div class="float">
    27   <div class="t1 red">green</div>
    28 </div>
    30 <div class="float">
    31   <div class="t1 green">green</div>
    32 </div>
    34 <div class="t1" style="position: absolute; top:8ch; ">green</div>
    35 <div class="t1 green" style="position: absolute; top:12ch; z-index:2;">green</div>
    37 </body>
    38 </html>

mercurial