Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-tables/paint/col-paint-htb-rtl.html
<!DOCTYPE html> <link rel="help" href="https://drafts.csswg.org/css-tables-3/#drawing-cell-backgrounds"> <link rel="match" href="col-paint-htb-rtl-ref.html"> <style> table { border: solid 2px; border-spacing: 5px; padding: 5px; } col { background: linear-gradient(60deg, red 50%, blue 50%); } </style> <table style="direction: rtl;"> <col style="width: 100px;"></col> <col style="width: 50px;"></col> <tr style="height: 100px;"> <td></td> <td></td> </tr> <tr style="height: 50px;"> <td></td> <td></td> </tr> </table>
/css/css-tables/paint/col-paint-htb-rtl-ref.html
<!DOCTYPE html> <style> table { border: solid 2px; border-spacing: 5px; padding: 5px; } col { background: linear-gradient(60deg, red 50%, blue 50%); } </style> <table> <col style="width: 50px;"></col> <col style="width: 100px;"></col> <tr style="height: 100px;"> <td></td> <td></td> </tr> <tr style="height: 50px;"> <td></td> <td></td> </tr> </table>