layout/reftests/w3c-css/submitted/flexbox/flexbox-basic-textarea-horiz-1-ref.xhtml

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 <?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     <title>CSS Reftest Reference</title>
     9     <link rel="author" title="Daniel Holbert" href="mailto:dholbert@mozilla.com"/>
    10     <style>
    11       div.flexbox {
    12         width: 200px;
    13         background: lightgreen;
    14         margin-bottom: 5px;
    15         line-height: 8px;
    16       }
    17       textarea {
    18         width: 10px;
    19         height: 20px;
    20         background: white;
    21         border-radius: 0;
    22         border: 1px dotted green;
    23         padding: 0;
    24       }
    25     </style>
    26   </head>
    27   <body>
    28     <div class="flexbox">
    29       <textarea/>
    30     </div>
    32     <div class="flexbox" style="height: 24px">
    33       some words
    34       <textarea style="float:right"/>
    35     </div>
    37     <div class="flexbox">
    38       <textarea style="width: 122.5px"
    39     /><textarea style="width: 73.5px"/>
    40     </div>
    42     <div class="flexbox">
    43       <textarea style="width: 93px"
    44     /><textarea style="width: 103px"/>
    45     </div>
    47     <div class="flexbox">
    48       <textarea style="width: 114px"
    49     /><textarea style="width: 82px"/>
    50     </div>
    52     <div class="flexbox">
    53       <textarea style="width: 106px"
    54     /><textarea style="width: 90px"/>
    55     </div>
    57     <div class="flexbox">
    58       <textarea style="width: 46px"
    59     /><textarea style="width: 150px"/>
    60     </div>
    62   </body>
    63 </html>

mercurial