Status: FAIL | Duration: 15ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-break/table/table-collapsed-borders-paint-htb-ltr.html
<!DOCTYPE html> <link rel="match" href="table-collapsed-borders-paint-htb-ltr-ref.html"> <link rel="help" href="https://drafts.csswg.org/css-tables-3/#fragmentation"> <link rel="help" href="https://drafts.csswg.org/css-tables-3/#rendering"> <style> .multicol { inline-size: 400px; block-size: 100px; columns: 4; column-fill: auto; gap: 10px; padding: 10px; border: solid 3px; } </style> <div class="multicol"> <table style="border-collapse: collapse; inline-size: 100%;"> <caption style="background: dodgerblue; block-size: 120px;"></caption> <tbody> <tr style="block-size: 50px;"> <td style="border: solid 10px lime;"></td> </tr> <tr style="block-size: 145px;"> <td style="border: solid 10px;"></td> </tr> </tbody> <tbody> <tr style="block-size: 50px;"> <td style="border: solid blue 10px;"></td> </tr> <tr style="block-size: 25px;"> <td style="border: solid blue 10px;"></td> </tr> </tbody> </table> </div>
/css/css-break/table/table-collapsed-borders-paint-htb-ltr-ref.html
<!DOCTYPE html> <style> .multicol { inline-size: 400px; block-size: 100px; columns: 4; column-fill: auto; gap: 10px; padding: 10px; border: solid 3px; } </style> <div class="multicol"> <div style="background: dodgerblue; block-size: 120px;"></div> <div style="block-size: 40px; border: solid 10px lime;"></div> <div style="block-size: 135px; border: solid 10px; border-top: none;"></div> <div style="block-size: 40px; border: solid 10px blue; border-top: none;"></div> <div style="block-size: 15px; border: solid 10px blue; border-top: none;"></div> </div>