Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / fixed-table-layout / cell-box-sizing-fixed-table-layout-expected.html
blobc2b02c311950ad5055b975d775299c0e53556862
1 <!DOCTYPE html>
2 <style>
3 table, .table {
4 border-spacing: 0px;
5 table-layout: fixed;
6 width: 0px;
8 .table {
9 display: table;
12 .td {
13 display: table-cell;
16 td, .td {
17 height: 80px;
18 width: 80px;
19 border: 10px solid green;
20 padding: 0px;
22 </style>
23 <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>
24 <p>You should see 4 100px * 100px cells with green borders.</p>
25 <table>
26 <td></td>
27 <td></td>
28 </table>
29 <div class="table">
30 <div class="td"></div>
31 <div class="td"></div>
32 </div>