Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / fixed-table-layout / cell-box-sizing-fixed-table-layout.html
blob317cd319b255fe732cdeb4f8a56e517895603f9e
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: 100px;
18 width: 100px;
19 border: 10px solid green;
20 padding: 0px;
21 -moz-box-sizing: border-box;
22 -webkit-box-sizing: border-box;
23 box-sizing: border-box;
25 </style>
26 <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>
27 <p>You should see 4 100px * 100px cells with green borders.</p>
28 <table>
29 <td></td>
30 <td></td>
31 </table>
32 <div class="table">
33 <div class="td"></div>
34 <div class="td"></div>
35 </div>