Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / border-collapsing / first-cell-left-border-hidden-table-ltr-section-rtl.html
blobf42e2f39a4e8e4f443ba2a65bc660aa1251918a2
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <style>
5 table td
7 border: 6px solid green;
9 td.rightBorderHidden
11 border-right-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 right-most cell's right border is 'hidden'.</p>
26 <p>For this test to pass, there should be only green borders on the cells and no right border on the table.</p>
27 <table>
28 <tbody dir="rtl">
29 <tr>
30 <td class="rightBorderHidden"></td>
31 <td></td>
32 </tr>
33 </tbody>
34 </table>
35 </body></html>