tor-browser

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

contain-size-inline-flex-001-ref.html (571B)


      1 <!DOCTYPE HTML>
      2 <html>
      3 <head>
      4  <meta charset="utf-8">
      5  <title>CSS Reftest Reference</title>
      6  <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
      7  <style>
      8  .basic {
      9    border: 1em solid green;
     10    display: inline-flex;
     11  }
     12  .width-ref {
     13    width: 50px;
     14  }
     15  .innerContents {
     16    color: transparent;
     17    width: 0;
     18    height: 0;
     19  }
     20  </style>
     21 </head>
     22 <body>
     23  aa<div class="basic"><div class="innerContents">i</div></div>bb
     24  <br>
     25 
     26  aa<div class="basic width-ref"><div class="innerContents">i</div></div>bb
     27 </body>
     28 </html>