Update web-platform-tests to revision e51f414776c4e7efa7cfa5fe63a3a8b3969e06ac

This commit is contained in:
WPT Sync Bot 2020-04-30 08:20:24 +00:00 committed by Josh Matthews
parent ed392ab3be
commit db4f300c7c
7956 changed files with 92483 additions and 78520 deletions

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1074593">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="A grid flex-item should have a definite grid." />
<p>Test passes if there is a filled green square.</p>
<div style="display: flex; width: 200px; height: 100px;">
<div style="display: grid; grid: 1fr 1fr / auto; flex: 1; writing-mode: vertical-lr;">
<div style="background: green;"></div>
</div>
</div>

View file

@ -0,0 +1,10 @@
<!DOCTYPE html>
<link rel="help" href="https://crbug.com/1074593">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<meta name="assert" content="A grid flex-item should have a definite grid." />
<p>Test passes if there is a filled green square.</p>
<div style="display: flex; width: 100px; height: 200px;">
<div style="display: grid; grid: 1fr 1fr / auto; flex: 1;">
<div style="background: green;"></div>
</div>
</div>