Update web-platform-tests to revision b'797e75946c24d0625f04247b16d33c26d4ada273'

This commit is contained in:
WPT Sync Bot 2023-04-30 01:27:44 +00:00
parent 4339b3bab4
commit 44e249bebb
414 changed files with 12588 additions and 11565 deletions

View file

@ -0,0 +1,41 @@
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#overflow-values">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert"
content="safe flex-start allows for overflow past the flex-end edge, which is top in the case of wrap-reverse" />
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
.flex {
display: flex;
width: 100px;
height: 90px;
align-content: safe flex-start;
flex-wrap: wrap-reverse;
/* Make the green square cover the red square. */
translate: 0 10px;
}
.item {
flex: 0 0 100px;
height: 100px;
background: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="reference-overlapped-red"></div>
<div class="flex">
<div class="item"></div>
</div>

View file

@ -0,0 +1,41 @@
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#overflow-values">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert"
content="safe flex-start allows for overflow past the flex-end edge, which is left in the case of row-reverse" />
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
.flex {
display: flex;
flex-flow: row-reverse;
width: 90px;
height: 100px;
justify-content: safe flex-start;
/* Make the green square cover the red square. */
translate: 10px 0;
}
.item {
flex: 0 0 100px;
height: 100px;
background: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="reference-overlapped-red"></div>
<div class="flex">
<div class="item"></div>
</div>

View file

@ -0,0 +1,41 @@
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#overflow-values">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert"
content="safe flex-start allows for overflow past the flex-end edge, which is top in the case of column-reverse" />
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
.flex {
display: flex;
flex-flow: column-reverse;
width: 100px;
height: 90px;
align-content: safe flex-start;
/* Make the green square cover the red square. */
translate: 0 10px;
}
.item {
flex: 0 0 100px;
height: 100px;
background: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="reference-overlapped-red"></div>
<div class="flex">
<div class="item"></div>
</div>

View file

@ -0,0 +1,42 @@
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#overflow-values">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert"
content="safe flex-start allows for overflow past the flex-end edge, which is left in the case of wrap-reverse + vertical-lr" />
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
.flex {
display: flex;
inline-size: 100px;
block-size: 90px;
align-content: safe flex-start;
flex-wrap: wrap-reverse;
writing-mode: vertical-lr;
/* Make the green square cover the red square. */
translate: 10px 0;
}
.item {
flex: 0 0 100px;
block-size: 100px;
background: green;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="reference-overlapped-red"></div>
<div class="flex">
<div class="item"></div>
</div>

View file

@ -0,0 +1,40 @@
<!DOCTYPE html>
<link rel="author" title="David Grogan" href="mailto:dgrogan@chromium.org">
<link rel="help" href="https://drafts.csswg.org/css-align-3/#overflow-values">
<link rel="match" href="../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="align-self:safe has no effect on -webkit-box" />
<style>
#reference-overlapped-red {
position: absolute;
background-color: red;
width: 100px;
height: 100px;
z-index: -1;
}
.flex {
display: -webkit-box;
-webkit-box-align: end;
width: 90px;
height: 90px;
/* Make the green square cover the red square. */
translate: 0 10px;
}
.item {
min-width: 100px;
min-height: 100px;
background: green;
align-self: safe center;
}
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.
</p>
<div id="reference-overlapped-red"></div>
<div class="flex">
<div class="item"></div>
</div>