tor-browser

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

calc-size-min-max-sizes-003.html (622B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-values-5/#calc-size">
      3 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
      4 <p>Test passes if there is a filled green square.</p>
      5 <div style="width: 100px;">
      6  <!-- The min-content, max-content size of this div should be: 90px, 110px respectively. -->
      7  <div style="background: green; width: fit-content; height: 100px;">
      8    <div style="width: calc-size(auto, size + 70px);">
      9       <span style="display: inline-block; width: 20px;"></span><span style="display: inline-block; width: 20px;"></span>
     10    </div>
     11  </div>
     12 </div>