blob: 0998fe68e007d5a46ff11d5ff87fdbad12d1dfe2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!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>
|