Status: FAIL | Duration: 14ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-break/table/table-fragmentation-003d-print.html
<!DOCTYPE html> <meta charset="utf-8"> <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1863421"> <link rel="match" href="table-fragmentation-003c-print-ref.html"> <style> @page { size: 5in 3in; margin: 0.5in; } :root { print-color-adjust: exact; } body { margin: 0; } table { inline-size: 3in; block-size: 3in; border-spacing: 0.125in; border: 0.25in solid black; padding: 0.125in; box-decoration-break: clone; } td { padding: 0; } thead td { block-size: 0.25in; background: blue; } tbody td { vertical-align: top; border: solid orange; border-width: 0.25in 0; } .content { block-size: 0.75in; background: gold; } tfoot td { block-size: 0.25in; background: purple; } </style> <table> <thead> <tr> <td></td> </tr> </thead> <tbody> <tr> <td><div class="content"></div></td> </tr> </tbody> <tfoot> <tr> <td></td> </tr> </tfoot> </table>
/css/css-break/table/table-fragmentation-003c-print-ref.html
<!DOCTYPE html> <link rel="author" title="Ting-Yu Lin" href="mailto:tlin@mozilla.com"> <link rel="author" title="Mozilla" href="https://www.mozilla.org/"> <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1863421"> <style> @page { size: 5in 3in; margin: 0.5in; } :root { print-color-adjust: exact; } body { margin: 0; } .table { inline-size: 3in; box-sizing: border-box; border: 0.25in solid black; padding: 0.125in 0.25in; box-decoration-break: clone; } .thead { block-size: 0.25in; background: blue; } .tbody { border: 0 solid orange; margin-block: 0.125in; background: gold; } .tfoot { block-size: 0.25in; background: purple; } </style> <div class="table"> <!-- Page 1 --> <div class="thead" style="margin-block-start: 0.125in;"></div> <div class="tbody" style="border-block-start-width: 0.25in; block-size: 0.125in;"></div> <div class="tfoot"></div> <!-- Page 2 --> <div class="thead"></div> <div class="tbody" style="block-size: 0.5in;"></div> <div class="tfoot"></div> <!-- Page 3 --> <div class="thead"></div> <div class="tbody" style="border-block-end-width: 0.25in; block-size: 0.125in;"></div> <div class="tfoot" style="margin-block-end: 0.125in;"></div> </div>