Update web-platform-tests to revision 16c99fc3f05855a7d7d19397a19f49d2dbf429b9

This commit is contained in:
WPT Sync Bot 2020-10-06 08:21:53 +00:00 committed by Josh Matthews
parent 28cbee585d
commit 454002ec4e
359 changed files with 6838 additions and 1401 deletions

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-overflow/#valdef-overflow-clip">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<p>Test passes if there is a filled green square.</p>
<div style="width: 100px; height: 100px; overflow-x: auto;">
<div style="overflow-x: clip;">
<div style="width: 200px; height: 100px; background: green;"></div>
</div>
</div>

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-overflow/#valdef-overflow-clip">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<p>Test passes if there is a filled green square.</p>
<div style="width: 100px; height: 100px; overflow-y: auto;">
<div style="overflow-y: clip; height: 100px;">
<div style="width: 100px; height: 200px; background: green;"></div>
</div>
</div>