Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-page/page-name-propagated-002-print.html
<!DOCTYPE html> <html> <link rel="match" href="page-name-propagated-002-print-ref.html"/> <link rel="help" href="https://www.w3.org/TR/css-page-3/#using-named-pages"/> <body> <div style="page: a">a</div> <div style="page: b"> <div style="page: e"> <div style="page: a">b</div> </div> <div style="page: c">c</div> </div> <div style="page: d">d</div> </body> </html>
/css/css-page/page-name-propagated-002-print-ref.html
<!DOCTYPE html> <html> <body> <div>a</div> <div> <div> <div>b</div> </div> <div style="break-before: page">c</div> </div> <div style="break-before: page">d</div> </body> </html>