Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / fixed-table-layout / column-group-box-sizing-fixed-table-layout-expected.html
blob0d883e72e827777803d82b7c7d679fa29505b562
1 <!DOCTYPE html>
2 <style>
3 table, .table {
4 border-spacing: 0px;
5 table-layout: fixed;
6 width: 0px;
9 .table {
10 display: table;
13 .td {
14 display: table-cell;
17 .colgroup {
18 display: table-column-group;
21 td, .td {
22 width: 80px;
23 padding: 0px;
24 height: 100px;
25 border: 10px solid green;
27 </style>
28 <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>
29 <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>
30 <p>You should see 4 100px * 100px cells with green borders.</p>
31 <table>
32 <colgroup></colgroup>
33 <colgroup></colgroup>
34 <tbody>
35 <td></td>
36 <td></td>
37 </tbody>
38 </table>
39 <div class="table">
40 <div class="colgroup"></div>
41 <div class="colgroup"></div>
42 <div class="td"></div>
43 <div class="td"></div>
44 </div>