tor-browser

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

break-before-expansion-001.html (666B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://drafts.csswg.org/css-tables-3/#fragmentation">
      3 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
      4 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
      5 <style>
      6 table { border-spacing: 0; }
      7 td { padding: 0; }
      8 </style>
      9 <div style="columns: 2; height: 100px; width: 100px; gap: 0; background: red; position: relative;">
     10  <table style="background: green;">
     11    <tr><td style="height: 50px; width: 50px;"></td></tr> <!-- We should have a column break after this row. -->
     12    <tr><td style="height: 100px; width: 50px; break-before: column;"></td></tr>
     13  </table>
     14 </div>