Update web-platform-tests to revision 58b72393db0bd273bb93268c33666cf893feb985

This commit is contained in:
Josh Matthews 2017-10-31 08:58:31 -04:00
parent 43a4f01647
commit 64e0a52537
12717 changed files with 59835 additions and 59820 deletions

View file

@ -0,0 +1,55 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area height</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#column-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Column-Axis Self-Baseline alignment may change grid area height on a fixed grid.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: grid;
width: 100px;
height: 100px;
color: green;
grid-auto-columns: 50px;
align-items: baseline;
align-content: start;
}
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 8px; left: 0px;">XX<br>XXXX<br>XX<br>XX X</div>
<div style="top: 0px; left: 50px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn">XX XXXX XX</div>
<div class="firstRowSecondColumn big">X</div>
<div class="secondRowFirstColumn">XX X</div>
</div>

View file

@ -0,0 +1,56 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area height</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#column-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Column-Axis Self-Baseline alignment may change grid area height on fixed-sized grid and content-distribution.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: grid;
width: 100px;
height: 100px;
color: green;
grid-auto-columns: 50px;
align-items: baseline;
align-content: space-evenly;
}
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 25px; left: 0px;">XX<br>XXXX<br>XX</div>
<div style="top: 73px; left: 0px;">XX X</div>
<div style="top: 17px; left: 50px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn">XX XXXX XX</div>
<div class="firstRowSecondColumn big">X</div>
<div class="secondRowFirstColumn">XX X</div>
</div>

View file

@ -0,0 +1,57 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area height</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#column-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Column-Axis Self-Baseline alignment may change grid area height on fixed-sized grid and empty items .">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: grid;
width: 100px;
height: 100px;
color: green;
grid-auto-columns: 50px;
align-items: baseline;
align-content: start;
}
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
font: 20px/1 Ahem;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 0px; width: 40px; background: red; height: 40px;"></div>
<div style="top: 24px; left: 50px" class="big">X</div>
<div style="top: 44px; left: 0px;">XX X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn" style="background: green; width: 40px; height: 40px;"></div>
<div class="firstRowSecondColumn big">X</div>
<div class="secondRowFirstColumn">XX X</div>
</div>

View file

@ -0,0 +1,53 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area height</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#column-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Column-Axis Self-Baseline alignment may change grid area height on auto-sized grid.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: inline-grid;
color: green;
grid-auto-columns: 50px;
align-items: baseline;
align-content: start;
}
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 8px; left: 0px;">XX<br>XXXX<br>XX<br>XX X</div>
<div style="top: 0px; left: 50px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn">XX XXXX XX</div>
<div class="firstRowSecondColumn big">X</div>
<div class="secondRowFirstColumn">XX X</div>
</div>

View file

@ -0,0 +1,54 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area height</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#column-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Column-Axis Self-Baseline alignment may change grid area height on auto-sized grid and gutters.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: inline-grid;
color: green;
grid-auto-columns: 50px;
align-items: baseline;
grid-row-gap: 20px;
}
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 8px; left: 0px;">XX<br>XXXX<br>XX</div>
<div style="top: 58px; left: 0px;">XX X</div>
<div style="top: 0px; left: 50px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn">XX XXXX XX</div>
<div class="firstRowSecondColumn big">X</div>
<div class="secondRowFirstColumn">XX X</div>
</div>

View file

@ -0,0 +1,54 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area height</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#column-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Column-Axis Self-Baseline alignment may change grid area height on auto-sized grid and empty items.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: inline-grid;
font: 10px/1 Ahem;
color: green;
grid-auto-columns: 50px;
align-items: baseline;
}
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 0px; width: 40px; background: red; height: 40px;"></div>
<div style="top: 24px; left: 50px" class="big">X</div>
<div style="top: 44px; left: 0px;">XX X</div>
</div>
<div class="grid"">
<div class="firstRowFirstColumn" style="background: green; width: 40px; height: 40px;"></div>
<div class="firstRowSecondColumn big">X</div>
<div class="secondRowFirstColumn">XX X</div>
</div>

View file

@ -0,0 +1,58 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area width</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#row-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Row-Axis Self-Baseline alignment may change grid area width on fixed-sized grid.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: grid;
width: 100px;
height: 100px;
color: green;
grid-auto-rows: 50px;
justify-items: baseline;
justify-content: start;
}
.grid > div { writing-mode: vertical-lr; }
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 5px;">XXXX<br>XXXX</div>
<div style="top: 20px; left: 15px;">X</div>
<div style="top: 30px; left: 15px;">X X</div>
<div style="top: 50px; left: 0px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn">XX XXXX XX</div>
<div class="secondRowFirstColumn big">X</div>
<div class="firstRowSecondColumn">XX X</div>
</div>

View file

@ -0,0 +1,61 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area width</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#row-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Row-Axis Self-Baseline alignment may change grid area width on fixed-sized grid and content-distribution.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: grid;
width: 100px;
height: 100px;
color: green;
grid-auto-rows: 50px;
justify-items: baseline;
justify-content: space-evenly;
}
.grid > div { writing-mode: vertical-lr; }
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 23px;">XXX<br>XXX</div>
<div style="top: 0px; left: 72px;">X</div>
<div style="top: 10px; left: 72px;">X</div>
<div style="top: 20px; left: 33px;">X</div>
<div style="top: 30px; left: 33px;">X</div>
<div style="top: 30px; left: 72px;">X</div>
<div style="top: 50px; left: 18px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn">XX XXXX XX</div>
<div class="secondRowFirstColumn big">X</div>
<div class="firstRowSecondColumn">XX X</div>
</div>

View file

@ -0,0 +1,59 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area width</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#row-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Row-Axis Self-Baseline alignment may change grid area width on fixed-sized grid and empty items.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: grid;
width: 100px;
height: 100px;
color: green;
grid-auto-rows: 50px;
justify-items: baseline;
justify-content: start;
}
.grid > div { writing-mode: vertical-lr; }
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 10px; width: 40px; background: red; height: 40px;"></div>
<div style="top: 0px; left: 50px;">X</div>
<div style="top: 10px; left: 50px;">X</div>
<div style="top: 30px; left: 50px;">X</div>
<div style="top: 50px; left: 0px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn" style="background: green; width: 40px; height: 40px;"></div>
<div class="secondRowFirstColumn big">X</div>
<div class="firstRowSecondColumn">XX X</div>
</div>

View file

@ -0,0 +1,57 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area width</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#row-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Row-Axis Self-Baseline alignment may change grid area width on auto-sized grid.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: inline-grid;
color: green;
grid-auto-rows: 50px;
justify-items: baseline;
justify-content: start;
}
.grid > div { writing-mode: vertical-lr; }
.big { font-size: 20px; }
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 5px;">XXXX<br>XXXX</div>
<div style="top: 20px; left: 15px;">X</div>
<div style="top: 30px; left: 15px;">X X</div>
<div style="top: 50px; left: 0px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn">XX XXXX XX</div>
<div class="secondRowFirstColumn big">X</div>
<div class="firstRowSecondColumn">XX X</div>
</div>

View file

@ -0,0 +1,59 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area width</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#row-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Row-Axis Self-Baseline alignment may change grid area width on auto-sized grid and gutters.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: inline-grid;
color: green;
grid-auto-rows: 50px;
justify-items: baseline;
grid-column-gap: 20px;
}
.grid > div { writing-mode: vertical-lr; }
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 5px;">XXX<br>XXX</div>
<div style="top: 0px; left: 55px;">X</div>
<div style="top: 10px; left: 55px;">X</div>
<div style="top: 20px; left: 15px;">X</div>
<div style="top: 30px; left: 15px;">X</div>
<div style="top: 30px; left: 55px;">X</div>
<div style="top: 50px; left: 0px" class="big">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn">XX XXXX XX</div>
<div class="secondRowFirstColumn big">X</div>
<div class="firstRowSecondColumn">XX X</div>
</div>

View file

@ -0,0 +1,57 @@
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Self-Baseline alignment may change grid area width</title>
<link rel="author" title="Javier Fernandez Garcia-Boente" href="mailto:jfernandez@igalia.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-1/#row-align">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#baseline-align-self">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#align-by-baseline">
<link rel="match" href="../../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="Row-Axis Self-Baseline alignment may change grid area width on auto-sized grid and empty items.">
<style>
.block, .grid { font: 10px/1 Ahem; }
.big { font-size: 20px; }
.block {
position: absolute;
z-index: -1;
background: green;
width: 100px;
height: 100px;
}
.block > div {
position: absolute;
color: red;
}
.grid {
display: inline-grid;
color: green;
grid-auto-rows: 50px;
justify-items: baseline;
justify-content: start;
}
.grid > div { writing-mode: vertical-lr; }
.firstRowFirstColumn {
grid-row: 1;
grid-column: 1;
}
.secondRowFirstColumn {
grid-row: 2;
grid-column: 1;
}
.firstRowSecondColumn {
grid-row: 1;
grid-column: 2;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="block">
<div style="top: 0px; left: 10px; width: 40px; background: red; height: 40px;"></div>
<div style="top: 0px; left: 50px;">X</div>
<div style="top: 10px; left: 50px;">X</div>
<div style="top: 30px; left: 50px;">X</div>
<div style="top: 50px; left: 0px;">X</div>
</div>
<div class="grid">
<div class="firstRowFirstColumn" style="background: green; width: 40px; height: 40px;"></div>
<div class="secondRowFirstColumn big">X</div>
<div class="firstRowSecondColumn">XX X</div>
</div>