Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / border-collapsing / rtl-table-left-border-hidden-expected.html
blob1d44d025a447e0b5aa8c8968cdc70af87115d38b
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <style>
5 table td
7 border: 6px solid green;
9 table
11 border-collapse: collapse;
12 border-spacing: 0px;
13 border-left-style: hidden;
15 td {
16 height: 20px;
17 width: 120px;
18 padding: 0px;
20 </style>
21 <p>Test for bug <a href="https://bugs.webkit.org/show_bug.cgi?id=87900">87900</a>: Add support for direction on table row group with collapsing borders</p>
22 <p>This test checks that a ltr table and several rtl row groups properly compute its collapsing borders when the table's left border is 'hidden'.</p>
23 <p>For this test to pass, there should be only green borders on the cells and no left border on the table.</p>
24 <table>
25 <thead>
26 <tr>
27 <td></td>
28 <td></td>
29 </tr>
30 </tbody>
31 <tbody>
32 <tr>
33 <td></td>
34 <td></td>
35 </tr>
36 </tbody>
37 <tfoot>
38 <tr>
39 <td></td>
40 <td></td>
41 </tr>
42 </tbody>
43 </table>
44 </body></html>