Update web-platform-tests to revision 28ac8ff82f255bfb5c799b6d433d19d0a0eb0e34

This commit is contained in:
WPT Sync Bot 2021-01-09 08:20:14 +00:00
parent b2465a1f22
commit 9115c87050
166 changed files with 2072 additions and 749 deletions

View file

@ -0,0 +1,18 @@
<!doctype html>
<meta charset="utf-8">
<title>Verifies overflow-clip-margin doesn't impact paint effects</title>
<link rel="help" href="https://www.w3.org/TR/css-overflow-3/#propdef-overflow-clip-margin">
<link rel="author" title="Scott Violet" href="mailto:sky@chromium.org">
<link rel="match" href="overflow-clip-margin-006-ref.html">
<style>
.parent {
width: 100px;
height: 100px;
background-color: green;
contain: paint;
overflow-clip-margin: 1px;
box-shadow: 20px 20px 5px red;
}
</style>
<p>You should see a green box with a red box shadow.
<div class="parent"></div>