Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / table / border-collapsing / table-ltr-rows-mixed-direction-expected.html
blobdd95cfa1b5f6ded825fb081e6bdf96acbbe6bb42
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="ltr" 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 </tbody>
35 </table>
36 </table>
37 </body>
38 </html>