tor-browser

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

break-avoidance-005.html (937B)


      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; break-inside: avoid; }
      8 </style>
      9 <div style="columns: 2; height: 100px; width: 100px; gap: 0; background: red; position: relative;">
     10  <table>
     11    <tbody>
     12      <tr><td style="height: 50px; width: 50px; background: green;"></td></tr> <!-- We should have a column break after this row. -->
     13      <tr><td style="height: 50px; width: 50px; background: green;"></td></tr>
     14    </tbody>
     15    <tbody>
     16      <tr><td style="height: 50px; width: 50px; background: green; break-before: avoid;"></td></tr>
     17    </tbody>
     18  </table>
     19  <div style="position: absolute; height: 50px; width: 50px; bottom: 0; left: 0; background: green;"></div>
     20 </div>