blob: f7fda9b86466c39ef7a473ccd16e16055fab4d8a [file] [log] [blame]
<!DOCTYPE html>
<style>
td, th {
background-color: #ddd;
border: 1px solid black;
}
tr {
break-inside: avoid;
}
.header {
font-weight: bold;
}
</style>
<p>crbug.com/642814: A row positioned naturally at the top of a column should move below any repeating table header.</p>
<div style="columns:3; line-height: 18px; column-fill: auto; height:74px; background-color: yellow;">
<table>
<tr><td class="header">Col 1</td><td class="header">Col 2</td></tr>
<tr><td>Te</td><td>xt</td></tr>
<tr><td>Te</td><td>xt</td></tr>
<caption style="caption-side: bottom;">Caption</caption>
</table>
<table>
<tr><td class="header">Col 3</td><td class="header">Col 4</td></tr>
<tr><td>Te</td><td>xt</td></tr>
</table>
</div>