Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<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; break-inside: avoid; }
</style>
<div style="columns: 2; height: 100px; width: 100px; gap: 0; background: red; position: relative;">
<table style="background: green;">
<tr><td style="height: 50px; width: 50px;"></td></tr> <!-- We should have a column break after this row. -->
<tr><td style="height: 50px; width: 50px;"></td></tr>
<tr><td style="height: 50px; width: 50px; break-before: avoid;"></td></tr>
</table>
</div>