layout/reftests/floats/429974-1-ref.html

Wed, 31 Dec 2014 07:53:36 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:53:36 +0100
branch
TOR_BUG_3246
changeset 5
4ab42b5ab56c
permissions
-rw-r--r--

Correct small whitespace inconsistency, lost while renaming variables.

     1 <!DOCTYPE html>
     2 <html>
     3 <head>
     5 <style type="text/css">
     7 .contain {
     8   background: aqua; color: black;
     9   height: 10px; margin: 2px 50px;
    10 }
    12 .fl, .fr { height: 5px; }
    13 .fl { float: left; width: 56px; }
    14 .fr { float: right; width: 73px; }
    16 .t { overflow: hidden; background: blue; height: 5px; width: 85px;
    17      border-left: 1px solid blue; padding-left: 2px;
    18      padding-right: 4px; border-right: 8px solid blue; }
    20 </style>
    22 </head>
    24 <body style="width: 400px">
    26 <div class="contain">
    27 	<div class="fl" id="p"></div>
    28 	<div class="fr"></div>
    29 </div>
    31 <div class="contain">
    32 	<div class="fl"></div>
    33 	<div class="t"></div>
    34 </div>
    36 </body>
    37 </html>

mercurial