Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Unified Diff: LayoutTests/web-animations-api/element-animate-list-of-keyframes.html

Issue 203463009: Web Animations API: Fix Synthetic keyframes + partial keyframes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add asserts that keyframe compositeOperations are replace in ensureInterpolationEffect Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/web-animations-api/element-animate-list-of-keyframes.html
diff --git a/LayoutTests/web-animations-api/element-animate-list-of-keyframes.html b/LayoutTests/web-animations-api/element-animate-list-of-keyframes.html
index fb91feb7b3d1195cc84273546841d7058af9b013..35c06e8e94dbd660dfbd4eb1b061f4f6e3d0eb3b 100644
--- a/LayoutTests/web-animations-api/element-animate-list-of-keyframes.html
+++ b/LayoutTests/web-animations-api/element-animate-list-of-keyframes.html
@@ -51,10 +51,8 @@ test(function() {
}, 'Calling animate() should start an animation. CamelCase property names should be parsed.');
var keyframesWithInvalid = [
- {offset: 0.1},
- {width: '0px', backgroundColor: 'octarine', offset: 0.2},
- {width: '1000px', foo: 'bar', offset: 1}
- ];
+ {width: '0px', backgroundColor: 'octarine', offset: 0},
+ {width: '1000px', foo: 'bar', offset: 1}];
test(function() {
var player = e3.animate(keyframesWithInvalid, {duration: durationValue, fill: 'forwards'});

Powered by Google App Engine
This is Rietveld 408576698