blob: c2b02c311950ad5055b975d775299c0e53556862 [file] [log] [blame]
<!DOCTYPE html>
<style>
table, .table {
border-spacing: 0px;
table-layout: fixed;
width: 0px;
}
.table {
display: table;
}
.td {
display: table-cell;
}
td, .td {
height: 80px;
width: 80px;
border: 10px solid green;
padding: 0px;
}
</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>You should see 4 100px * 100px cells with green borders.</p>
<table>
<td></td>
<td></td>
</table>
<div class="table">
<div class="td"></div>
<div class="td"></div>
</div>