1
0
Fork 0
firefox/testing/web-platform/tests/css/css-conditional/container-queries/no-layout-containment-scroll.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

14 lines
598 B
HTML

<!DOCTYPE html>
<title>Scrollable overflow should propagate from a container-type subtree.</title>
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/10544#issuecomment-2248438355">
<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>