Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-values/viewport-units-001-print.html
<!doctype html> <meta charset="utf-8"> <title>Viewport units in print account for margins</title> <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1414600"> <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/5437"> <link rel="help" href="https://drafts.csswg.org/css-values-4/#viewport-relative-lengths"> <link rel="match" href="viewport-units-001-print-ref.html"> <style> body { margin: 0 } div { box-sizing: border-box; width: 100vw; height: 100vh; border: 1px solid black; } </style> <div>I should not overflow to the next page.</div>
/css/css-values/viewport-units-001-print-ref.html
<!doctype html> <meta charset="utf-8"> <title>CSS test reference</title> <style> body { margin: 0 } :root { box-sizing: border-box; width: 100%; height: 100%; border: 1px solid black; } </style> <div>I should not overflow to the next page.</div>