tor-browser

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

table-as-item-specified-height.html (926B)


      1 <!DOCTYPE html>
      2 <title>table is flex item</title>
      3 <link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
      4 <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com">
      5 <link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#layout-algorithm" title="9. Flex Layout Algorithm">
      6 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#computing-the-table-height">
      7 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1692116">
      8 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
      9 <meta name="assert" content="Table's specified height does not count as another min-height for the purposes of the flexbox algorithm.">
     10 
     11 <p>Test passes if there is a filled green square.</p>
     12 
     13 <div style="display: flex; flex-direction: column; width: 100px;">
     14  <div style="display: table; width: 100px; height: 500px; background: green; flex: 0 0 100px;"></div>
     15 </div>