layout/reftests/flexbox/flexbox-float-1-ref.xhtml

Fri, 16 Jan 2015 04:50:19 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Fri, 16 Jan 2015 04:50:19 +0100
branch
TOR_BUG_9701
changeset 13
44a2da4a2ab2
permissions
-rw-r--r--

Replace accessor implementation with direct member state manipulation, by
request https://trac.torproject.org/projects/tor/ticket/9701#comment:32

     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         display: flex;
    11         width: 400px;
    12         margin-bottom: 2px;
    13         font-family: sans-serif;
    14         background: lightgreen;
    15         justify-content: space-around;
    16       }
    17     </style>
    18   </head>
    19   <body>
    20     <div class="flexbox">
    21       aaa<div>[[[</div>bbb
    22     </div>
    23     <div class="flexbox">
    24       aaa<div>]]]</div>bbb
    25     </div>
    26     <div class="flexbox">
    27       aaa<div>[[[</div>
    28     </div>
    29     <div class="flexbox">
    30       aaa<div>]]]</div>
    31     </div>
    32     <div class="flexbox">
    33       <div>[[[</div>bbb
    34     </div>
    35     <div class="flexbox">
    36       <div>]]]</div>bbb
    37     </div>
    38   </body>
    39 </html>

mercurial