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