Status: PASS | Duration: 6ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-break/overflowing-block-print.html
<!DOCTYPE html> <html> <title> Overflowing content does not affect whether a fixed-height box fits on a page, but does get printed on the next page. </title> <meta name="flags" content="may"> <link rel="match" href="overflowing-block-print-ref.html"> <link rel="help" href="https://www.w3.org/TR/css-break-3/#parallel-flows"> <style> * { box-sizing: border-box; margin: 0; padding: 0; height: 100%; } body { border: solid orange 10px; padding: 10px; } div { border: solid gray 10px; height: 300%; } </style> <div></div>
/css/css-break/overflowing-block-print-ref.html
<!DOCTYPE html> <html class="reftest-paged"> <title> Reference </title> <style> * { box-sizing: border-box; margin: 0; padding: 0; position: absolute; left: 0; right: 0; height: 100%; } div { border: solid orange 10px; } div + div { border: solid transparent 20px; } div > div { border: solid gray 10px; height: 300%; } </style> <div></div> <div> <div></div> </div>