chromium/third_party/blink/web_tests/fast/table/border-collapsing/top-border-vertical-rl-table-rtl-section-ltr.html

<!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 dir="rtl">
        <tbody>
        <tr>
            <td></td>
            <td></td>
        </tr>
        </tbody>
    </table>
</body></html>