Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / border-collapsing / left-border-table-rtl-section-ltr.html
blobdd449037b5235fb1fe5c079b57ce2795db1306b1
1 <!DOCTYPE html>
2 <html>
3 <body>
4 <style>
5 table td
7 border: 5px solid green;
8 border-left: 0px;
10 table
12 border-collapse: collapse;
13 border-spacing: 0px;
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 rtl table with a ltr row group properly compute its collapsing borders when the left borders are disabled.</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 dir="rtl">
25 <tbody dir="ltr">
26 <tr>
27 <td></td>
28 <td></td>
29 </tr>
30 </tbody>
31 </table>
32 </body></html>