tor-browser

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

grid-with-orthogonal-child-within-flexbox.html (700B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1111799">
      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="display: flex; width: 100px; overflow: hidden;">
      6  <div style="display: grid; height: 100px;"> <!-- min-content is 100px -->
      7    <div style="writing-mode: vertical-rl; line-height: 0;">
      8      <span style="display: inline-block; width: 50px; height: 100px; background: green;"></span>
      9      <span style="display: inline-block; width: 50px; height: 100px; background: green;"></span>
     10    </div>
     11  </div>
     12  <div style="background: red;">text</div>
     13 </div>