wpt / css / css-overflow / overflow-body-propagation-004.html

Status: PASS | Duration: 7ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-overflow/overflow-body-propagation-004.html

<!doctype html>
<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-no-propagation-ref.html">
<style>
  html {
    overflow: hidden;
  }
  body {
    overflow: scroll;
    margin-top: 100px;
  }
</style>
<body>The body should have scrollbars, not the viewport.</body>

/css/css-overflow/reference/overflow-body-no-propagation-ref.html

<!doctype html>
<html style="overflow:auto">
<title>CSS Overflow Test Reference</title>
<body style="margin-top:100px;overflow:scroll">The body should have scrollbars, not the viewport.</body>
</html>