diff options
author | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2018-11-07 21:06:07 -0500 |
---|---|---|
committer | WPT Sync Bot <josh+wptsync@joshmatthews.net> | 2018-11-07 22:27:51 -0500 |
commit | 44434263087ebb0d58766c10c9c9ac69c9b32b51 (patch) | |
tree | d9225cb0186fef92c73ed1ad8c58c99db5f23876 /tests/wpt/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative.html | |
parent | 2ed23ce4c9ce43da7a8cbc8dd94b46574ca9fec5 (diff) | |
download | servo-44434263087ebb0d58766c10c9c9ac69c9b32b51.tar.gz servo-44434263087ebb0d58766c10c9c9ac69c9b32b51.zip |
Update web-platform-tests to revision cd44958a002b1ad494168e0290554644de84526e
Diffstat (limited to 'tests/wpt/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative.html')
-rw-r--r-- | tests/wpt/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/wpt/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative.html b/tests/wpt/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative.html index 280f32a4852..81b0d189464 100644 --- a/tests/wpt/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative.html +++ b/tests/wpt/web-platform-tests/css/css-animations/KeyframeEffect-getKeyframes.tentative.html @@ -645,7 +645,7 @@ test(t => { const expected = [ { offset: 0, computedOffset: 0, easing: "ease", composite: "auto", - backgroundSize: "auto auto" }, + backgroundSize: "auto" }, { offset: 1, computedOffset: 1, easing: "ease", composite: "auto", backgroundSize: "50% auto, 6px auto, contain" }, ]; @@ -657,7 +657,7 @@ test(t => { // Test inheriting a background-size value expected[0].backgroundSize = div.style.backgroundSize = - "30px auto, 40% auto, auto auto"; + "30px auto, 40% auto, auto"; frames = getKeyframes(div); for (let i = 0; i < frames.length; i++) { |