tor-browser

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

as-column-flex-item.html (800B)


      1 <!DOCTYPE html>
      2 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
      3 <link rel="help" href="https://www.w3.org/TR/css-multicol-1/">
      4 <link rel="help" href="https://www.w3.org/TR/css-sizing-3/">
      5 <meta name="assert" content="Tests that the intrinsic block-size of a multicol container is calculated correctly, including the border">
      6 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      7 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      8 <div style="width:100px; height:100px; background:red;">
      9  <div style="display:flex; flex-flow:column; background:red;">
     10    <div style="columns:4; column-gap:0; border:30px solid green; width:40px;">
     11      <div style="height:160px; background:green;"></div>
     12    </div>
     13  </div>
     14 </div>