Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-page/pseudo-first-margin-002-print.html
<!DOCTYPE html> <html> <link rel="match" href="pseudo-first-margin-print-ref.html"/> <link rel="help" href="https://www.w3.org/TR/css-page-3/#first-pseudo"/> <style> @page b { margin: 0; } @page a:first { margin: 1cm; } @page :first { margin: 2cm; } div { width: 1cm; height: 1cm; border: 2px solid red; } </style> <body> <div style="page: a; border-color: lightblue"></div> <div style="page: b; border-color: pink"></div> </body> </html>
/css/css-page/pseudo-first-margin-print-ref.html
<!DOCTYPE html> <html> <style> @page { margin: 0; } .block { width: 1cm; height: 1cm; border: 2px solid red; } </style> <body> <div style="padding: 1cm; break-after: page"> <div class="block" style="border-color: lightblue"></div> </div> <div style="padding: 0"> <div class="block" style="border-color: pink"></div> </div> </body> </html>