tor-browser

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

table-as-item-specified-width-vertical.html (768B)


      1 <!DOCTYPE html>
      2 <title>Table with vertical writing mode inside a row flexbox container</title>
      3 <link rel="author" title="Felipe Erias Morandeira" href="mailto:felipeerias@igalia.com" />
      4 <link rel="help" href="https://www.w3.org/TR/css-flexbox-1/#layout-algorithm" title="9. Flex Layout Algorithm">
      5 <link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
      6 <meta name="assert" content="The width of an empty table (vertical direction) inside a flexbox container (row direction) is computed correctly.">
      7 
      8 <p>Test passes if there is a filled green square.</p>
      9 
     10 <div style="display: flex; flex-direction: row; height: 100px;">
     11    <div style="display: table; writing-mode: vertical-lr; width: 500px; background: green; flex: 0 0 100px;"></div>
     12 </div>