mirror of
https://github.com/servo/servo.git
synced 2025-08-21 13:25:34 +01:00
Update web-platform-tests to revision b'14684f837eba364df3de2b6683d4eb5385333158'
This commit is contained in:
parent
f09561254d
commit
0431e20517
369 changed files with 4941 additions and 1492 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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); }
|
||||
|
|
|
@ -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); }
|
||||
|
|
|
@ -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); }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue