tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

flexbox-basic-textarea-vert-001-ref.xhtml (1538B)


      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        height: 200px;
     13        width: 22px;
     14        float: left;
     15        margin-right: 10px;
     16        background: lightgreen;
     17        line-height: 0;
     18      }
     19      textarea {
     20        width: 20px;
     21        height: 10px;
     22        background: white;
     23        border-radius: 0;
     24        border: 1px dotted green;
     25        margin: 0;
     26        padding: 0;
     27      }
     28    </style>
     29  </head>
     30  <body>
     31    <div class="flexbox">
     32      <textarea/>
     33    </div>
     34 
     35    <div class="flexbox">
     36      <div style="font: 8px monospace; height: 188px">
     37        a b
     38      </div>
     39      <textarea/>
     40    </div>
     41 
     42    <div class="flexbox">
     43      <textarea style="height: 108.8px"
     44    /><textarea style="height: 87.1px"/>
     45    </div>
     46 
     47    <div class="flexbox">
     48      <textarea style="height: 93px"
     49    /><textarea style="height: 103px"/>
     50    </div>
     51 
     52    <div class="flexbox">
     53      <textarea style="height: 114px"
     54    /><textarea style="height: 82px"/>
     55    </div>
     56 
     57    <div class="flexbox">
     58      <textarea style="height: 106px"
     59    /><textarea style="height: 90px"/>
     60    </div>
     61 
     62    <div class="flexbox">
     63      <textarea style="height: 46px"
     64    /><textarea style="height: 150px"/>
     65    </div>
     66 
     67  </body>
     68 </html>