Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-conditional/container-queries/no-layout-containment-scroll.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>Scrollable overflow should propagate from a container-type subtree.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<body onload="checkLayout('#test')">
<div id=log></div>
<div id="test" data-expected-scroll-height="200">
<div style="container-type: inline-size; height: 100px;">
<div style="height: 200px;"></div>
</div>
</div>
</body>