tor-browser

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

break-after-table-cell-child.html (671B)


      1 <!DOCTYPE html>
      2 <link rel="help" href="https://www.w3.org/TR/css-break-3/#forced-breaks">
      3 <link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
      4 <p>Test passes if there is a filled green square.</p>
      5 <div style="columns: 2; column-fill: auto; gap: 0; width: 100px; height: 200px;">
      6  <div style="background: green; height: 100px; width: 100%; display: table; break-after: avoid;">
      7    <div style="display: table-cell;">
      8      <div style="break-after: column;"></div> <!-- Should be propagated to the outer table. -->
      9    </div>
     10    <div style="display: table-cell;"></div>
     11  </div>
     12  <div style="background: green; height: 100px;"></div>
     13 </div>