Update web-platform-tests to revision fa663532c77aef32c4c04abdc3d7278ff568da93

This commit is contained in:
WPT Sync Bot 2020-10-02 08:19:35 +00:00
parent ac354572e2
commit efbf39f40a
75 changed files with 327 additions and 122 deletions

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<meta name="assert" content="This ensures that floats block-end margin contributes to the scrollable overflow.">
<link rel="help" href="https://drafts.csswg.org/css-overflow-3/#scrollable" />
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/check-layout-th.js"></script>
<body onload="checkLayout('#target')">
<div id="target" style="width: 100px; height: 100px; overflow: scroll;" data-expected-scroll-height="220">
<div style="float: left; width: 50px; height: 200px; margin: 10px; background: lime;"></div>
</div>
<div id=log></div>
</body>