table-cell-expansion-008.html (716B)
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 <style> 5 table { border-spacing: 0; } 6 td { padding: 0; } 7 </style> 8 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 9 <div style="columns: 2; gap: 0; column-fill: auto; height: 100px; width: 100px; background: red;"> 10 <table style="background: green;"> 11 <tr> 12 <td> 13 <div style="height: 10px; width: 50px;"></div> 14 <div style="height: 10px; break-before: column;"></div> 15 </td> 16 </tr> 17 <tr> 18 <td> 19 <div style="height: 90px;"></div> 20 </td> 21 </tr> 22 </table> 23 </div>