| <!doctype html> | |
| <head> | |
| <style> | |
| table { | |
| border: solid 20px red; | |
| border-collapse: collapse; | |
| writing-mode: vertical-rl; | |
| direction: rtl; | |
| } | |
| #tbody1 { | |
| border: solid 20px rgba(0,0,255,0.5); | |
| } | |
| td { | |
| height: 20px; | |
| width: 20px; | |
| } | |
| </style> | |
| </head> | |
| <body> | |
| <table> | |
| <p> webkit.org/b/8914: Paint collapsed section borders even when the sections don't contain cells. | |
| <tbody id="tbody1"> | |
| <tr> | |
| <td></td> | |
| </tr> | |
| <tr> | |
| <td></td> | |
| <td></td> | |
| <td></td> | |
| </tr> | |
| <tr> | |
| <td></td> | |
| </tr> | |
| </tbody> | |
| </table> | |
| </body | |
| </html> |