mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
14 lines
418 B
HTML
14 lines
418 B
HTML
<!doctype html>
|
|
<meta charset="utf-8">
|
|
<title>CSS Test: HTML root containment stops overflow propagation from BODY</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-overflow/#overflow-propagation">
|
|
<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>
|