blob: cb2714edeab31c808c8e8a8b5fa86bf66fbb5717 [file] [log] [blame]
<!DOCTYPE html>
<style>
table {
border-collapse: collapse;
}
td, th {
background-color: #ddd;
border: 1px solid black;
}
thead, tfoot, tr {
break-inside: avoid;
}
</style>
<p>crbug.com/675453: Content of a cell that spans multiple pages should avoid the repeating header.</p>
<div style="columns:3; line-height: 20px; column-fill: auto; height:100px; background-color: yellow;">
<table>
<thead>
<tr>
<th>Col 1</th>
<th>Col 2</th>
</tr>
</thead>
<tbody>
<tr><td>Te</td><td>xt</td></tr>
<tr><td>Te</td><td>xt</td></tr>
<tr><td>
Te<br>
Te<br>
Te<br>
Te<br>
</td>
<td>
xt<br>
xt<br>
xt<br>
xt<br>
</td></tr>
</tbody>
<tfoot>
<tr>
<th>Ft 1</th>
<th>Ft 2</th>
</tr>
</tfoot>
</table>
</div>