Status: FAIL | Duration: 31ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-page/page-box-005-print.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> <link rel="help" href="https://drafts.csswg.org/css-page-3/#page-properties"> <link rel="match" href="page-box-005-print-ref.html"> <style> @page { size: 400px; margin: 50px; color: hotpink; border: 10px dotted; padding: 20px; background: yellow; } @page :first { color: orange; background: white; } @page :right { /* The first page in a horizontal writing mode LTR document is a right page. :first has higher specificity than :right, so these declarations are only for the third page. */ color: black; background: cyan; } :root { print-color-adjust: exact; } body { margin: 0; } </style> White background (including page margins). Orange dotted border. Black text. <div style="break-before:page;"> Yellow background (including page margins). Hotpink dotted border. Black text. </div> <div style="break-before:page;"> Cyan background (including page margins). Black dotted border. Black text. </div>
/css/css-page/page-box-005-print-ref.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> <style> @page { size: 400px; margin: 0; } :root { print-color-adjust: exact; } body { margin: 0; } .pagebox { display: flex; break-before: page; height: 400px; } .pagearea { margin: 50px; border: 10px dotted; padding: 20px; } </style> <div class="pagebox"> <div class="pagearea" style="border-color:orange;"> White background (including page margins). Orange dotted border. Black text. </div> </div> <div class="pagebox" style="background:yellow;"> <div class="pagearea" style="border-color:hotpink;"> Yellow background (including page margins). Hotpink dotted border. Black text. </div> </div> <div class="pagebox" style="background:cyan;"> <div class="pagearea"> Cyan background (including page margins). Black dotted border. Black text. </div> </div>