ladybird/Tests/LibWeb/Layout/input/table/border-conflict-resolutions-with-more-cells-than-cols.html
2025-05-04 11:23:17 +02:00

24 lines
270 B
HTML

<!DOCTYPE html>
<style>
table {
border-collapse: collapse;
}
</style>
<body>
<table>
<colgroup>
<col />
<col />
<col />
</colgroup>
<tbody>
<tr>
<td>A</td>
<td>B</td>
<td>C</td>
<td>D</td>
</tr>
</tbody>
</table>
</body>