Update web-platform-tests to revision 59cec4f843d5c86d5d2e99d636e465e09807cafb

This commit is contained in:
WPT Sync Bot 2020-07-23 08:21:14 +00:00
parent e823d1623b
commit b64dc1ed97
69 changed files with 607 additions and 198 deletions

View file

@ -618,14 +618,14 @@ test(t => {
test(t => {
const div = addDiv(t);
div.style.animation = 'anim-custom-property-in-keyframe 100s';
div.style.animation = 'anim-custom-property-in-keyframe 100s steps(2, start)';
const frames = getKeyframes(div);
const expected = [
{ offset: 0, computedOffset: 0, easing: "ease", composite: "auto",
{ offset: 0, computedOffset: 0, easing: "steps(2, start)", composite: "auto",
color: "rgb(0, 0, 0)" },
{ offset: 1, computedOffset: 1, easing: "ease", composite: "auto",
{ offset: 1, computedOffset: 1, easing: "steps(2, start)", composite: "auto",
color: "rgb(0, 255, 0)" },
];
assert_frame_lists_equal(frames, expected);