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