no-layout-containment-scroll.html (598B)
1 <!DOCTYPE html> 2 <title>Scrollable overflow should propagate from a container-type subtree.</title> 3 <link rel="help" href="https://github.com/w3c/csswg-drafts/issues/10544#issuecomment-2248438355"> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <script src="/resources/check-layout-th.js"></script> 7 <body onload="checkLayout('#test')"> 8 <div id=log></div> 9 <div id="test" data-expected-scroll-height="200"> 10 <div style="container-type: inline-size; height: 100px;"> 11 <div style="height: 200px;"></div> 12 </div> 13 </div> 14 </body>