Update web-platform-tests to revision b'ee6da9d71d0268d7fdb04e8e5b26858f46ee0cc4'

This commit is contained in:
WPT Sync Bot 2022-01-20 04:38:55 +00:00 committed by cybai
parent 4401622eb1
commit b77ad115f6
16832 changed files with 270819 additions and 87621 deletions

View file

@ -0,0 +1,48 @@
<!DOCTYPE html>
<title>position:sticky should work for elements with display: table* containing blocks</title>
<link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos" />
<meta name="assert" content="This test checks that position:sticky works for elements with containing blocks that have display: table*" />
<style>
.group {
display: inline-block;
}
.container {
height: 1000px;
width: 50px;
margin-right: 10px;
}
.scroll-container {
height: 300px;
width: 500px;
overflow: hidden;
}
.sticky {
height: 50px;
width: 50px;
background: green;
}
</style>
<div class="scroll-container">
<div class="group">
<div class="container" style="display: table-cell;">
<div class="sticky"></div>
</div>
</div>
<div class="group">
<div class="container" style="display: table-row;">
<div class="sticky"></div>
</div>
</div>
<div class="group">
<div class="container" style="display: table;">
<div class="sticky"></div>
</div>
</div>
</div>

View file

@ -0,0 +1,71 @@
<!DOCTYPE html>
<title>position:sticky should work for elements with display: table* containing blocks</title>
<link rel="match" href="position-sticky-contained-by-display-table-ref.html" />
<link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos" />
<meta name="assert" content="This test checks that position:sticky works for elements with containing blocks that have display: table*" />
<style>
.group {
display: inline-block;
}
.container {
height: 1000px;
width: 50px;
margin-right: 10px;
}
#scroll-container {
height: 300px;
width: 500px;
overflow: hidden;
position: relative;
}
.sticky {
position: sticky;
height: 50px;
width: 50px;
background: green;
top: 0;
}
#scroll-indicator {
display: inline-block;
position: absolute;
top: 0px;
width: 300px;
height: 50px;
background: red;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroll-container').scrollTop = 300;
});
</script>
<div id="scroll-container">
<div class="group">
<div class="container" style="display: table-cell;">
<div class="sticky"></div>
</div>
</div>
<div class="group">
<div class="container" style="display: table-row;">
<div class="sticky"></div>
</div>
</div>
<div class="group">
<div class="container" style="display: table;">
<div class="sticky"></div>
</div>
</div>
<!-- This is here to validate that the container does scroll. -->
<div id="scroll-indicator" style=""></div>
</div>

View file

@ -12,7 +12,7 @@
overflow: auto;
height: 200px;
width: 200px;
transform: scale(1);
position: relative;
}
.block {

View file

@ -11,7 +11,7 @@
overflow: auto;
height: 200px;
width: 200px;
transform: scale(1);
position: relative;
}
.block {

View file

@ -30,7 +30,7 @@ test(() => {
const nonStickyTopY = elements.container.offsetTop +
elements.filler.clientHeight;
assert_equals(elements.sticky.offsetTop, nonStickyTopY);
assert_equals(elements.innerSticky.offsetTop, 35);
assert_equals(elements.innerSticky.offsetTop, 50);
}, 'the inner sticky can stick before the outer one if necessary');
test(() => {
@ -52,14 +52,14 @@ test(() => {
}, 'both sticky boxes can be stuck at the same time');
test(() => {
const elements = setupNestedStickyTest('bottom', 25, 35);
const elements = setupNestedStickyTest('bottom', 25, 75);
elements.scroller.scrollTop = 0;
assert_equals(elements.sticky.offsetTop, elements.container.offsetTop);
assert_equals(elements.innerSticky.offsetTop, 0);
}, 'neither sticky can escape their containing block');
test(() => {
const elements = setupNestedStickyTest('bottom', 25, 500);
const elements = setupNestedStickyTest('bottom', 25, 300);
elements.scroller.scrollTop = 200;
// It doesn't matter how big the inner sticky offset is, it cannot escape its
// containing block (the outer sticky).

View file

@ -30,7 +30,7 @@ test(() => {
const nonStickyLeftX = elements.container.offsetLeft +
elements.filler.clientWidth;
assert_equals(elements.sticky.offsetLeft, nonStickyLeftX);
assert_equals(elements.innerSticky.offsetLeft, 35);
assert_equals(elements.innerSticky.offsetLeft, 50);
}, 'the inner sticky can stick before the outer one if necessary');
test(() => {
@ -52,7 +52,7 @@ test(() => {
}, 'both sticky boxes can be stuck at the same time');
test(() => {
const elements = setupNestedStickyTest('right', 25, 35);
const elements = setupNestedStickyTest('right', 25, 100);
elements.scroller.scrollLeft = 0;
assert_equals(elements.sticky.offsetLeft, elements.container.offsetLeft);
assert_equals(elements.innerSticky.offsetLeft, 0);

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<title>Reference for position:sticky bottom constraint should behave correctly for &lt;td&gt; elements</title>
<style>
.group {
display: inline-block;
position: relative;
width: 150px;
height: 200px;
}
.scroller {
position: relative;
width: 100px;
height: 150px;
overflow-x: hidden;
overflow-y: auto;
}
.contents {
height: 550px;
}
.indicator {
position: absolute;
background-color: green;
left: 0;
height: 50px;
width: 50px;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollTop = 0;
document.getElementById('scroller2').scrollTop = 75;
document.getElementById('scroller3').scrollTop = 150;
});
</script>
<div>You should see three green boxes below. No red should be visible.</div>
<div class="group">
<div id="scroller1" class="scroller">
<div class="indicator" style="top: 100px;"></div>
<div class="contents"></div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="indicator" style="top: 150px;"></div>
<div class="contents"></div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="indicator" style="top: 200px;"></div>
<div class="contents"></div>
</div>
</div>

View file

@ -0,0 +1,109 @@
<!DOCTYPE html>
<title>position:sticky bottom constraint should behave correctly for &lt;td&gt; elements</title>
<link rel="match" href="position-sticky-table-td-bottom-ref.html" />
<link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos" />
<meta name="assert" content="This test checks that the position:sticky bottom constraint behaves correctly for &lt;td&gt; elements" />
<style>
table {
border-collapse:collapse;
}
td {
padding: 0;
}
td > div {
height: 50px;
width: 50px;
}
.group {
display: inline-block;
position: relative;
width: 150px;
height: 200px;
}
.scroller {
position: relative;
width: 100px;
height: 150px;
overflow-x: hidden;
overflow-y: auto;
}
.prepadding {
height: 100px;
}
.postpadding {
height: 250px;
}
.indicator {
position: absolute;
background-color: red;
left: 0;
height: 50px;
width: 50px;
}
.sticky {
position: sticky;
bottom: 25px;
background-color: green;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollTop = 0;
document.getElementById('scroller2').scrollTop = 75;
document.getElementById('scroller3').scrollTop = 150;
});
</script>
<div>You should see three green boxes below. No red should be visible.</div>
<div class="group">
<div id="scroller1" class="scroller">
<div class="indicator" style="top: 100px;"></div>
<div class="prepadding"></div>
<table>
<tr><td><div></div></td></tr>
<tr><td><div></div></td></tr>
<tr><td class="sticky"><div></div></td></td>
<tr><td><div></div></td></tr>
</table>
<div class="postpadding"></div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="indicator" style="top: 150px;"></div>
<div class="prepadding"></div>
<table>
<tr><td><div></div></td></tr>
<tr><td><div></div></td></tr>
<tr><td class="sticky"><div></div></td></td>
<tr><td><div></div></td></tr>
</table>
<div class="postpadding"></div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="indicator" style="top: 200px;"></div>
<div class="prepadding"></div>
<table>
<tr><td><div></div></td></tr>
<tr><td><div></div></td></tr>
<tr><td class="sticky"><div></div></td></td>
<tr><td><div></div></td></tr>
</table>
<div class="postpadding"></div>
</div>
</div>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<title>Reference for position:sticky left constraint should behave correctly for &lt;td&gt; elements</title>
<style>
.group {
position: relative;
width: 250px;
height: 150px;
}
.scroller {
position: relative;
width: 200px;
height: 100px;
overflow-x: auto;
overflow-y: hidden;
}
.contents {
height: 10px;
width: 500px;
}
.indicator {
position: absolute;
background-color: green;
top: 0;
height: 50px;
width: 50px;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollLeft = 50;
document.getElementById('scroller2').scrollLeft = 175;
document.getElementById('scroller3').scrollLeft = 250;
});
</script>
<div>You should see three green boxes below. No red or blue should be visible.</div>
<div class="group">
<div id="scroller1" class="scroller">
<div class="indicator" style="left: 150px;"></div>
<div class="contents"></div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="indicator" style="left: 200px;"></div>
<div class="contents"></div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="indicator" style="left: 250px;"></div>
<div class="contents"></div>
</div>
</div>

View file

@ -0,0 +1,118 @@
<!DOCTYPE html>
<title>position:sticky left constraint should behave correctly for &lt;td&gt; elements</title>
<link rel="match" href="position-sticky-table-td-left-ref.html" />
<link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos" />
<meta name="assert" content="This test checks that the position:sticky left constraint behaves correctly for &lt;td&gt; elements" />
<script src="../resources/ref-rectangle.js"></script>
<style>
table {
border-collapse: collapse;
margin-left: 100px;
}
td {
padding: 0;
}
td > div {
height: 50px;
width: 50px;
}
.group {
position: relative;
width: 250px;
height: 150px;
}
.scroller {
position: relative;
width: 200px;
height: 100px;
overflow-x: auto;
overflow-y: hidden;
}
.postpadding {
height: 10px;
width: 500px;
}
.indicator {
position: absolute;
background-color: red;
top: 0;
height: 50px;
width: 50px;
}
.sticky {
position: sticky;
left: 25px;
background-color: green;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollLeft = 50;
document.getElementById('scroller2').scrollLeft = 175;
document.getElementById('scroller3').scrollLeft = 250;
createIndicatorForStickyElements(document.querySelectorAll('.sticky'));
});
</script>
<div>You should see three green boxes below. No red or blue should be visible.</div>
<div class="group">
<div id="scroller1" class="scroller">
<div class="indicator" style="left: 150px;"></div>
<table>
<tbody>
<tr>
<td><div></div></td>
<td class="sticky"><div></div></td>
<td><div></div></td>
<td><div></div></td>
</tr>
</tbody>
</table>
<div class="postpadding"></div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="indicator" style="left: 200px;"></div>
<table>
<tbody>
<tr>
<td><div></div></td>
<td class="sticky"><div></div></td>
<td><div></div></td>
<td><div></div></td>
</tr>
</tbody>
</table>
<div class="postpadding"></div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="indicator" style="left: 250px;"></div>
<table>
<tbody>
<tr>
<td><div></div></td>
<td class="sticky"><div></div></td>
<td><div></div></td>
<td><div></div></td>
</tr>
</tbody>
</table>
<div class="postpadding"></div>
</div>
</div>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<title>Reference for position:sticky right constraint should behave correctly for &lt;td&gt; elements</title>
<style>
.group {
position: relative;
width: 250px;
height: 150px;
}
.scroller {
position: relative;
width: 200px;
height: 100px;
overflow-x: auto;
overflow-y: hidden;
}
.contents {
height: 10px;
width: 500px;
}
.indicator {
position: absolute;
background-color: green;
top: 0;
height: 50px;
width: 50px;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollLeft = 0;
document.getElementById('scroller2').scrollLeft = 75;
document.getElementById('scroller3').scrollLeft = 150;
});
</script>
<div>You should see three green boxes below. No red or blue should be visible.</div>
<div class="group">
<div id="scroller1" class="scroller">
<div class="indicator" style="left: 150px;"></div>
<div class="contents"></div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="indicator" style="left: 200px;"></div>
<div class="contents"></div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="indicator" style="left: 250px;"></div>
<div class="contents"></div>
</div>
</div>

View file

@ -0,0 +1,118 @@
<!DOCTYPE html>
<title>position:sticky right constraint should behave correctly for &lt;td&gt; elements</title>
<link rel="match" href="position-sticky-table-td-right-ref.html" />
<link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos" />
<meta name="assert" content="This test checks that the position:sticky right constraint behaves correctly for &lt;td&gt; elements" />
<script src="../resources/ref-rectangle.js"></script>
<style>
table {
border-collapse: collapse;
margin-left: 150px;
}
td {
padding: 0;
}
td > div {
height: 50px;
width: 50px;
}
.group {
position: relative;
width: 250px;
height: 150px;
}
.scroller {
position: relative;
width: 200px;
height: 100px;
overflow-x: auto;
overflow-y: hidden;
}
.postpadding {
height: 10px;
width: 500px;
}
.indicator {
position: absolute;
background-color: red;
top: 0;
height: 50px;
width: 50px;
}
.sticky {
position: sticky;
right: 25px;
background-color: green;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollLeft = 0;
document.getElementById('scroller2').scrollLeft = 75;
document.getElementById('scroller3').scrollLeft = 150;
createIndicatorForStickyElements(document.querySelectorAll('.sticky'));
});
</script>
<div>You should see three green boxes below. No red or blue should be visible.</div>
<div class="group">
<div id="scroller1" class="scroller">
<div class="indicator" style="left: 150px;"></div>
<table>
<tbody>
<tr>
<td><div></div></td>
<td><div></div></td>
<td class="sticky"><div></div></td>
<td><div></div></td>
</tr>
</tbody>
</table>
<div class="postpadding"></div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="indicator" style="left: 200px;"></div>
<table>
<tbody>
<tr>
<td><div></div></td>
<td><div></div></td>
<td class="sticky"><div></div></td>
<td><div></div></td>
</tr>
</tbody>
</table>
<div class="postpadding"></div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="indicator" style="left: 250px;"></div>
<table>
<tbody>
<tr>
<td><div></div></td>
<td><div></div></td>
<td class="sticky"><div></div></td>
<td><div></div></td>
</tr>
</tbody>
</table>
<div class="postpadding"></div>
</div>
</div>

View file

@ -0,0 +1,62 @@
<!DOCTYPE html>
<title>Reference for position:sticky top constraint should behave correctly for &lt;td&gt; elements</title>
<style>
.group {
display: inline-block;
position: relative;
width: 150px;
height: 200px;
}
.scroller {
position: relative;
width: 100px;
height: 150px;
overflow-x: hidden;
overflow-y: auto;
}
.contents {
height: 550px;
}
.indicator {
position: absolute;
background-color: green;
left: 0;
height: 50px;
width: 50px;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollTop = 150;
document.getElementById('scroller2').scrollTop = 225;
document.getElementById('scroller3').scrollTop = 250;
});
</script>
<div>You should see three green boxes below. No red should be visible.</div>
<div class="group">
<div id="scroller1" class="scroller">
<div class="indicator" style="top: 200px;"></div>
<div class="contents"></div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="indicator" style="top: 250px;"></div>
<div class="contents"></div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="indicator" style="top: 250px;"></div>
<div class="contents"></div>
</div>
</div>

View file

@ -0,0 +1,109 @@
<!DOCTYPE html>
<title>position:sticky top constraint should behave correctly for &lt;td&gt; elements</title>
<link rel="match" href="position-sticky-table-td-top-ref.html" />
<link rel="help" href="https://www.w3.org/TR/css-position-3/#sticky-pos" />
<meta name="assert" content="This test checks that the position:sticky top constraint behaves correctly for &lt;td&gt; elements" />
<style>
table {
border-collapse:collapse;
}
td {
padding: 0;
}
td > div {
height: 50px;
width: 50px;
}
.group {
display: inline-block;
position: relative;
width: 150px;
height: 200px;
}
.scroller {
position: relative;
width: 100px;
height: 150px;
overflow-x: hidden;
overflow-y: auto;
}
.prepadding {
height: 100px;
}
.postpadding {
height: 250px;
}
.indicator {
position: absolute;
background-color: red;
left: 0;
height: 50px;
width: 50px;
}
.sticky {
position: sticky;
top: 25px;
background-color: green;
}
</style>
<script>
window.addEventListener('load', function() {
document.getElementById('scroller1').scrollTop = 150;
document.getElementById('scroller2').scrollTop = 225;
document.getElementById('scroller3').scrollTop = 250;
});
</script>
<div>You should see three green boxes below. No red should be visible.</div>
<div class="group">
<div id="scroller1" class="scroller">
<div class="indicator" style="top: 200px;"></div>
<div class="prepadding"></div>
<table>
<tr><td><div></div></td></tr>
<tr><td><div></div></td></tr>
<tr><td class="sticky"><div></div></td></tr>
<tr><td><div></div></td></tr>
</table>
<div class="postpadding"></div>
</div>
</div>
<div class="group">
<div id="scroller2" class="scroller">
<div class="indicator" style="top: 250px;"></div>
<div class="prepadding"></div>
<table>
<tr><td><div></div></td></tr>
<tr><td><div></div></td></tr>
<tr><td class="sticky"><div></div></td></tr>
<tr><td><div></div></td></tr>
</table>
<div class="postpadding"></div>
</div>
</div>
<div class="group">
<div id="scroller3" class="scroller">
<div class="indicator" style="top: 250px;"></div>
<div class="prepadding"></div>
<table>
<tr><td><div></div></td></tr>
<tr><td><div></div></td></tr>
<tr><td class="sticky"><div></div></td></tr>
<tr><td><div></div></td></tr>
</table>
<div class="postpadding"></div>
</div>
</div>

View file

@ -14,7 +14,7 @@
position: relative;
width: 130px;
height: 200px;
overflow: scroll;
overflow: hidden;
font: 25px/1 Ahem;
}

View file

@ -20,7 +20,7 @@
position: relative;
width: 130px;
height: 200px;
overflow: scroll;
overflow: hidden;
font: 25px/1 Ahem;
}
@ -65,7 +65,7 @@ window.addEventListener('load', function() {
<div class="group">
<div id="scroller2" class="scroller" style="writing-mode: vertical-rl;">
<div class="indicator" style="left: 45px; top: 100px;">XXX</div>
<div class="indicator" style="left: 60px; top: 100px;">XXX</div>
<div class="contents">
<div class="sticky" style="right: 20px;">XXX</div>
</div>