blob: b1fcc891a2c5e7fdeaa2ba4bdf753cf421dc688e [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 {
padding: 0px;
height: 120px;
border: 10px solid green;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
colgroup, .colgroup {
width: 100px;
}
</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>