diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-overflow/overflow-body-propagation-004.html')
-rw-r--r-- | testing/web-platform/tests/css/css-overflow/overflow-body-propagation-004.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-overflow/overflow-body-propagation-004.html b/testing/web-platform/tests/css/css-overflow/overflow-body-propagation-004.html new file mode 100644 index 0000000000..2ed8d2687a --- /dev/null +++ b/testing/web-platform/tests/css/css-overflow/overflow-body-propagation-004.html @@ -0,0 +1,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> |