Update web-platform-tests to revision 08fb3cceabe444c32264fdb44db50672ebea8610

This commit is contained in:
WPT Sync Bot 2020-04-15 08:23:34 +00:00
parent ce9f22a5e4
commit b74bf3ef9a
152 changed files with 4135 additions and 695 deletions

View file

@ -0,0 +1,9 @@
<!DOCTYPE html>
<html>
<body>
<div>The test passes if it has the same output than the reference.</div>
<div>
<div>anonymous item</div>
</div>
</body>
</html>

View file

@ -0,0 +1,2 @@
<!DOCTYPE html>
<div style="background: grey;">Test passes if it doesn't crash.</div>

View file

@ -0,0 +1,22 @@
<!DOCTYPE html>
<style>
.grid {
display: inline-grid;
background: grey;
grid-template-columns: 50px 50px 50px 50px;
grid-template-rows: 50px 50px;
}
.grid > :nth-child(1) { background: magenta; }
.grid > :nth-child(2) { background: blue; }
.grid > :nth-child(3) { background: yellow; }
.grid > :nth-child(4) { background: green; }
.grid > :nth-child(5) { background: black; }
</style>
<p>This test passes if the black item is positioned in the first column of the second row, since the spec states that we must select the first one among several equally named grid lines.</p>
<div class="grid">
<div style="grid-row: 1; grid-column: 1"></div>
<div style="grid-row: 1; grid-column: 2"></div>
<div style="grid-row: 1; grid-column: 3"></div>
<div style="grid-row: 1; grid-column: 4"></div>
<div style="grid-row: 2; grid-column: 1"></div>
</div>