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-013.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test: HTML with display:none and BODY with overflow:scroll</title>
<link rel="author" title="Oriol Brufau" href="mailto:obrufau@igalia.com">
<meta name="assert" content="The <body> doesn't propagate overflow to the
viewport when the root element doesn't generate a box. Therefore, there
shouldn't be scrollbars.">
<link rel="match" href="about:blank">
<style>
:root {
display: none;
scrollbar-color: red red;
}
body {
overflow: scroll;
}
</style>
<body></body>