Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / border-collapsing / last-cell-left-border-hidden-table-ltr-section-rtl.html
blobb3128a651832a1e4c334975787bd8e15faec16bf
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <style>
5 table td
7 border: 6px solid green;
9 td.leftBorderHidden
11 border-left-style: hidden;
13 table
15 border-collapse: collapse;
16 border-spacing: 0px;
18 td {
19 height: 20px;
20 width: 120px;
21 padding: 0px;
23 </style>
24 <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>
25 <p>This test checks that a ltr table and a rtl row group properly compute its collapsing borders when the left-most cell's left border is 'hidden'.</p>
26 <p>For this test to pass, there should be only green borders on the cells and no left border on the table.</p>
27 <table>
28 <tbody dir="rtl">
29 <tr>
30 <td></td>
31 <td class="leftBorderHidden"></td>
32 </tr>
33 </tbody>
34 </table>
35 </body></html>