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

Unified Diff: LayoutTests/svg/animations/script-tests/animate-keySplines.js

Issue 1007843002: [svg] 'keyTimes' values should allow surrounding whitespace. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 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 | Source/core/svg/SVGAnimationElement.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/svg/animations/script-tests/animate-keySplines.js
diff --git a/LayoutTests/svg/animations/script-tests/animate-keySplines.js b/LayoutTests/svg/animations/script-tests/animate-keySplines.js
index 1ec69ee54145e56a794d4402816e79d93ea9b3db..989ffc249186fb8f4467009bcec300829c2deb40 100644
--- a/LayoutTests/svg/animations/script-tests/animate-keySplines.js
+++ b/LayoutTests/svg/animations/script-tests/animate-keySplines.js
@@ -15,7 +15,8 @@ var animate = createSVGElement("animate");
animate.setAttribute("id", "animation");
animate.setAttribute("attributeName", "height");
animate.setAttribute("calcMode", "spline");
-animate.setAttribute("keySplines", "0 ,0 1 , 1 ; 0 0 , 1 , 1; .75 , 0 , 0 , .75;");
+animate.setAttribute("keyTimes", " 0 ; 0.3333333 ; 0.666666; 1 ");
+animate.setAttribute("keySplines", " 0 ,0 1 , 1 ; 0 0 , 1 , 1 ; .75 , 0 , 0 , .75 ; ");
animate.setAttribute("values", "200;167;111;0");
animate.setAttribute("begin", "click");
animate.setAttribute("dur", "9s");
« no previous file with comments | « no previous file | Source/core/svg/SVGAnimationElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698