Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-overflow/overflow-body-propagation-011.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8">
<title>CSS Test: HTML root containment stops overflow propagation from BODY</title>
<link rel="match" href="overflow-body-propagation-011-ref.html">
<style>
html {
contain: paint;
}
body {
overflow: scroll;
}
</style>
<body>PASS if BODY has scrollbars, but not viewport.</body>