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

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

Issue 539383002: Handle semicolons at end of keySplines value (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix nits Created 6 years, 3 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/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 0aee2428f3095c1b75deac35c1c7b163efa0c382..1ec69ee54145e56a794d4402816e79d93ea9b3db 100644
--- a/LayoutTests/svg/animations/script-tests/animate-keySplines.js
+++ b/LayoutTests/svg/animations/script-tests/animate-keySplines.js
@@ -14,8 +14,8 @@ rect.setAttribute("onclick", "executeTest()");
var animate = createSVGElement("animate");
animate.setAttribute("id", "animation");
animate.setAttribute("attributeName", "height");
-animate.setAttribute("calcMode", "splines");
-animate.setAttribute("keySplines", "0 ,0 1 , 1 ; 0 0 , 1 , 1; .75 , 0 , 0 , .75");
+animate.setAttribute("calcMode", "spline");
+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 | « LayoutTests/svg/animations/keypoints-mismatch-expected.txt ('k') | LayoutTests/svg/custom/keySplines-parsing-error.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698