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