Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / border-collapsing / table-rtl-row-mixed-direction-expected.html
blobd7f2efa534d026c55c290e0e61e6ff429dd0885a
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 table {
6 border-collapse: collapse;
7 border: 3px solid green;
10 td {
11 height: 100px;
12 width: 100px;
14 </style>
15 <head>
16 <body>
17 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=101060">101060</a>: Fix the collapsing border code to handle mixed directionality at the row level</p>
18 <p>This test checks that a table with dir="rtl" and mixed directionality on the row works as expected.</p>
19 <p>The table below should have a 3px green outer border.</p>
20 <table>
21 <tbody>
22 <tr>
23 <td></td>
24 <td></td>
25 </tr>
26 <tr>
27 <td></td>
28 <td></td>
29 </tr>
30 <tr>
31 <td></td>
32 <td></td>
33 </tr>
34 <tr>
35 <td></td>
36 <td></td>
37 </tr>
38 </tbody>
39 </table>
40 </body>
41 </html>