Status: PASS | Duration: 8ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/css-overflow/overflow-body-propagation-001.html
<!doctype html> <title>CSS Overflow Test: Propagation of body overflow to viewport</title> <link rel="help" href="https://drafts.csswg.org/css-overflow/#overflow-propagation"> <link rel="help" href="https://github.com/w3c/csswg-drafts/pull/4148"> <link rel="match" href="reference/overflow-body-propagation-ref.html"> <style> body { overflow: scroll; margin-top: 100px; } </style> <body>The viewport should have scrollbars, not the body.</body>
/css/css-overflow/reference/overflow-body-propagation-ref.html
<!doctype html> <html style="overflow:scroll"> <title>CSS Overflow Test Reference</title> <body style="margin-top:100px">The viewport should have scrollbars, not the body.</body> </html>