summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/overflow-body-propagation-004.html
blob: 2ed8d2687a33608e0e70884ad2ea59330d2b09e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<!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>