Update web-platform-tests to revision b'14684f837eba364df3de2b6683d4eb5385333158'

This commit is contained in:
WPT Sync Bot 2023-03-08 02:06:05 +00:00
parent f09561254d
commit 0431e20517
369 changed files with 4941 additions and 1492 deletions

View file

@ -16,7 +16,7 @@
<script>
var target = document.getElementById("target");
target.animate([
{ backgroundColor: 'rgb(200, 0, 0)', composite: 'accumulate' },
{ backgroundColor: 'rgb(200, 0, 0)', composite: 'accumulate', easing: 'steps(2, end)' },
{ backgroundColor: 'rgb(0, 0, 0' }
], {
duration: 1000000

View file

@ -15,7 +15,7 @@
width: 100px;
animation-name: colorize;
animation-duration: 100000s;
animation-timing-function: cubic-bezier(0, 1, 1, 0);
animation-timing-function: steps(2, end);
display: inline-block;
margin: 10px;
}

View file

@ -7,7 +7,7 @@
width: 100px;
height: 100px;
background-color: green;
animation: bgcolor2 10s, bgcolor1 0.001s;
animation: bgcolor2 10s steps(2, end), bgcolor1 0.001s steps(2, end);
}
@keyframes bgcolor1 {
0% { background-color: rgb(0, 200, 0); }

View file

@ -7,7 +7,7 @@
width: 100px;
height: 100px;
background-color: green;
animation: bgcolor2 10s, bgcolor1 2s 1s;
animation: bgcolor2 10s steps(2, end), bgcolor1 2s 1s steps(2, end);
}
@keyframes bgcolor1 {
0% { background-color: rgb(0, 200, 0); }

View file

@ -7,7 +7,7 @@
width: 100px;
height: 100px;
background-color: green;
animation: bgcolor2 200s, bgcolor1 100s 0.001s;
animation: bgcolor2 200s steps(2, end), bgcolor1 100s 0.001s steps(2, end);
}
@keyframes bgcolor1 {
0% { background-color: rgb(0, 199, 0); }