Upstream version 7.35.144.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / LayoutTests / fast / table / table-rtl-section-ltr.html
1 <!DOCTYPE html>
2 <html>
3 <body>
4     <style>
5         table td
6         {
7             border: 5px solid green;
8             border-left: 0px;
9         }
10         table
11         {
12             border-collapse: separate;
13             border-spacing: 0px;
14         }
15         td {
16             height: 20px;
17             width: 120px;
18             padding: 0px;
19         }
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 separate 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>