summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/table/border-collapsing/top-border-vertical-rl-table-rtl-section-ltr-expected.html
blob: 66c4556ee7f7a7fb357840f634b0907640284df7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<body>
    <style>
        table td
        {
            border: 6px solid green;
            border-top: 0px;
        }
        table
        {
            border-collapse: collapse;
            border-spacing: 0px;
            -webkit-writing-mode: vertical-lr;
            -moz-writing-mode: vertical-lr;
            writing-mode: vertical-lr;
        }
        td {
            height: 20px;
            width: 120px;
            padding: 0px;
        }
    </style>
    <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>
    <p>This test checks that a rtl table with a vertical writing mode and a ltr row group properly compute its collapsing borders when the top borders are disabled.</p>
    <p>For this test to pass, there should be only green borders on the cells and no top border on the table.</p>
    <table>
        <tbody>
        <tr>
            <td></td>
            <td></td>
        </tr>
        </tbody>
    </table>
</body></html>