tor-browser

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

table-as-item-stretch-cross-size.html (681B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-flexbox-1/#valdef-align-items-stretch">
      3 <link rel="match" href="../reference/ref-filled-green-100px-square.xht">
      4 <meta name="assert" content="The table's cross-axis (block-size) is stretched.">
      5 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      6 <div style="display: flex; width: 100px; height: 100px; background: red;">
      7  <table style="border-spacing: 0; flex-grow: 1;">
      8    <caption style="height: 10px; background: green;"></caption>
      9    <caption style="height: 20px; background: green; caption-side: bottom;"></caption>
     10    <td style="background: green;"></td>
     11  </table>
     12 </div>