Update web-platform-tests to revision 3b17f29d98e9f39a4836a7450f9fe992f3cc0e7b

This commit is contained in:
WPT Sync Bot 2021-01-21 08:19:57 +00:00
parent 4096fb9169
commit 964f9a5544
87 changed files with 1591 additions and 227 deletions

View file

@ -0,0 +1,8 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-align-content-space-evenly">
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="The fallback alignment for 'space-evenly' should be 'center'.">
<p>Test passes if there is a filled green square.</p>
<div style="display: grid; width: 50px; height: 50px; align-content: space-evenly; justify-content: space-evenly;">
<div style="width: 100px; height: 100px; background: green; position: relative; top: 25px; left: 25px;"></div>
</div>

View file

@ -0,0 +1,8 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-align-content-space-around">
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="The fallback alignment for 'space-around' should be 'center'.">
<p>Test passes if there is a filled green square.</p>
<div style="display: grid; width: 50px; height: 50px; align-content: space-around; justify-content: space-around;">
<div style="width: 100px; height: 100px; background: green; position: relative; top: 25px; left: 25px;"></div>
</div>

View file

@ -0,0 +1,8 @@
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-align-3/#valdef-align-content-space-between">
<link rel="match" href="../../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="The fallback alignment for 'space-between' should be 'start'.">
<p>Test passes if there is a filled green square.</p>
<div style="display: grid; width: 50px; height: 50px; align-content: space-between; justify-content: space-between;">
<div style="width: 100px; height: 100px; background: green;"></div>
</div>