| <!DOCTYPE html> |
| <html> |
| <head> |
| <style> |
| table { |
| border-collapse: collapse; |
| border: 3px solid green; |
| } |
| |
| td { |
| height: 100px; |
| width: 100px; |
| } |
| </style> |
| <head> |
| <body> |
| <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> |
| <p>This test checks that a table with dir="rtl" and mixed directionality on the row works as expected.</p> |
| <p>The table below should have a 3px green outer border.</p> |
| <table> |
| <tbody> |
| <tr> |
| <td></td> |
| <td></td> |
| </tr> |
| <tr> |
| <td></td> |
| <td></td> |
| </tr> |
| <tr> |
| <td></td> |
| <td></td> |
| </tr> |
| <tr> |
| <td></td> |
| <td></td> |
| </tr> |
| </tbody> |
| </table> |
| </body> |
| </html> |