blob: 0d883e72e827777803d82b7c7d679fa29505b562 [file] [log] [blame]
<!DOCTYPE html>
<style>
table, .table {
border-spacing: 0px;
table-layout: fixed;
width: 0px;
}
.table {
display: table;
}
.td {
display: table-cell;
}
.colgroup {
display: table-column-group;
}
td, .td {
width: 80px;
padding: 0px;
height: 100px;
border: 10px solid green;
}
</style>
<p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=87536">87536</a>: REGRESSION(r111742): box-sizing: border-box doesn't work on fixed table layout</p>
<p>Testing that a column group's fixed width should apply to the cell's border-box and not impacted by the cell's box-sizing.</p>
<p>You should see 4 100px * 100px cells with green borders.</p>
<table>
<colgroup></colgroup>
<colgroup></colgroup>
<tbody>
<td></td>
<td></td>
</tbody>
</table>
<div class="table">
<div class="colgroup"></div>
<div class="colgroup"></div>
<div class="td"></div>
<div class="td"></div>
</div>