Status: FAIL | Duration: 33ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-page/margin-boxes/paint-order-002-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/#painting"> <meta name="assert" content="Test default vertical and horizontal alignment for all 16 margin boxes."> <!-- This test is the same as paint-order-001-print, except that the margin boxes are defined in a different order, which shouldn't make any difference. --> <link rel="match" href="paint-order-001-print-ref.html"> <style> :root { print-color-adjust: exact; } @page { margin: 100px; size: 500px 400px; @left-top { border: solid thin; margin: -4em 15px; content: ""; background: yellow; } @left-middle { border: solid thin; margin: 0 10px; height: 5em; text-align: center; vertical-align: top; content: "FAIL"; background: cyan; } @left-bottom { border: solid thin; margin: -4em 5px; text-align: center; vertical-align: top; content: "FAIL"; background: hotpink; } @top-left { border: solid thin; margin: 5px -4em; text-align: right; vertical-align: middle; content: "FAIL"; background: hotpink; } @top-center { border: solid thin; margin: 10px 0; width: 5em; text-align: right; vertical-align: middle; content: "FAIL"; background: cyan; } @top-right { border: solid thin; margin: 15px -4em; text-align: right; vertical-align: middle; content: "FAIL"; background: yellow; } @right-top { border: solid thin; margin: -4em 5px; text-align: center; vertical-align: bottom; content: "FAIL"; background: hotpink; } @right-middle { border: solid thin; margin: 0 10px; height: 5em; text-align: center; vertical-align: bottom; content: "FAIL"; background: cyan; } @right-bottom { border: solid thin; margin: -4em 15px; text-align: left; vertical-align: bottom; content: "FAIL"; background: yellow; } @bottom-left { border: solid thin; margin: 15px -4em; text-align: left; vertical-align: top; content: "FAIL"; background: yellow; } @bottom-center { border: solid thin; width: 5em; margin: 10px 0; text-align: left; vertical-align: middle; content: "FAIL"; background: cyan; } @bottom-right { border: solid thin; margin: 5px -4em; text-align: left; vertical-align: middle; content: "FAIL"; background: hotpink; } @bottom-left-corner { border: solid thin; margin-bottom: 20px; vertical-align: top; text-align: center; content: "FAIL"; background: pink; } @bottom-right-corner { border: solid thin; margin-right: 20px; text-align: left; vertical-align: center; content: "FAIL"; background: pink; } @top-right-corner { border: solid thin; margin-top: 20px; text-align: center; vertical-align: bottom; content: "FAIL"; background: pink; } @top-left-corner { border: solid thin; margin-left: 20px; text-align: center; vertical-align: middle; content: "FAIL"; background: pink; } } </style> Default margin box paint order should start with top-left-corner, then go clockwise. Hotpink boxes should be on top of pink ones. Cyan on top of hotpink. Yellow on top of cyan. No text ("FAIL") should be seen in the margin boxes.
/css/css-page/margin-boxes/paint-order-001-print-ref.html
<!DOCTYPE html> <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> <style> @page { margin: 0; size: 500px 400px; } :root { print-color-adjust: exact; } body { display: grid; grid-template-columns: 100px auto 100px; grid-template-rows: 100px auto 100px; height: 100vh; margin: 0; } .box { border: solid thin; flex: 1; } body > .box { background: pink; } .vertical-edge { display: flex; } .horizontal-edge { display: flex; flex-flow: column; } .vertical-edge > .box.first { width: 5em; margin: 5px -4em; background: hotpink; } .vertical-edge > .box.second { width: 5em; flex: none; margin: 10px 0; background: cyan; } .vertical-edge > .box.third { margin: 15px -4em; background: yellow; } .horizontal-edge > .box.first { height: 5em; margin: -4em 5px; background: hotpink; } .horizontal-edge > .box.second { height: 5em; flex: none; margin: 0 10px; background: cyan; } .horizontal-edge > .box.third { margin: -4em 15px; background: yellow; } .pagearea { padding: 8px; } </style> <div class="box" style="margin-left:20px; z-index:0;"></div> <div class="vertical-edge"> <div class="box first" style="z-index:1;"></div> <div class="box second" style="z-index:2;"></div> <div class="box third" style="z-index:3;"></div> </div> <div class="box" style="margin-top:20px; z-index:4;"></div> <div class="horizontal-edge"> <div class="box third" style="z-index:15;"></div> <div class="box second" style="z-index:14;"></div> <div class="box first" style="z-index:13;"></div> </div> <div class="pagearea"> Default margin box paint order should start with top-left-corner, then go clockwise. Hotpink boxes should be on top of pink ones. Cyan on top of hotpink. Yellow on top of cyan. No text ("FAIL") should be seen in the margin boxes. </div> <div class="horizontal-edge"> <div class="box first" style="z-index:5;"></div> <div class="box second" style="z-index:6;"></div> <div class="box third" style="z-index:7;"></div> </div> <div class="box" style="margin-bottom:20px; z-index:12;"></div> <div class="vertical-edge"> <div class="box third" style="z-index:11;"></div> <div class="box second" style="z-index:10;"></div> <div class="box first" style="z-index:9;"></div> </div> <div class="box" style="margin-right:20px; z-index:8;"></div>