layout/reftests/flexbox/flexbox-minSize-vert-1-ref.xhtml

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 <?xml version="1.0" encoding="UTF-8"?>
     2 <!--
     3      Any copyright is dedicated to the Public Domain.
     4      http://creativecommons.org/publicdomain/zero/1.0/
     5 -->
     6 <html xmlns="http://www.w3.org/1999/xhtml">
     7   <head>
     8     <style>
     9       div.flexbox {
    10         height: 140px;
    11         margin-right: 5px;
    12         font-size: 8px;
    13         border: 1px dotted black;
    14         float: left;
    15       }
    16       div.flexbox > * {
    17         margin-bottom: 20px;
    18         border: 1px dashed green;
    19         background: lightblue;
    20         width: 40px;
    21       }
    22       div.smallSize      { height: 5px; }
    23       div.smallFlexBasis { height: 2px; }
    24       div.zeroHeight     { height: 0; }
    26     </style>
    27   </head>
    28   <body>
    30     <div class="flexbox">
    31       <div>a b</div>
    32       <div>a b</div>
    33       <div>a b</div>
    34     </div>
    36     <div class="flexbox smallSize">
    37       <div>a b</div>
    38       <div>a b</div>
    39       <div>a b</div>
    40     </div>
    42     <div class="flexbox">
    43       <div>a b</div>
    44       <div class="smallSize">a b</div>
    45       <div class="smallFlexBasis">a b</div>
    46     </div>
    48     <div class="flexbox smallSize">
    49       <div class="zeroHeight">a b</div>
    50       <div class="zeroHeight">a b</div>
    51       <div class="zeroHeight">a b</div>
    52     </div>
    54   </body>
    55 </html>

mercurial