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

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

Issue 196053009: Web Animations API: Constructing an Animation from a partial keyframe throws a JS exception (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@SyntheticKeyframesFix
Patch Set: 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
« no previous file with comments | « no previous file | LayoutTests/web-animations-api/partial-keyframes.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'});
« no previous file with comments | « no previous file | LayoutTests/web-animations-api/partial-keyframes.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698