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

Unified Diff: third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js

Issue 1415513010: Web Animations: Add SVGRectInterpolationType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@_svgIOIInterpolationType
Patch Set: neutralKeyframe Created 5 years, 1 month 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: third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js
diff --git a/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js b/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js
index 6ce2273a504164a40f91d98aa528b8a8914929b4..edb6b68a4b53c3036f990db6420ac1f3afe2afe7 100644
--- a/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js
+++ b/third_party/WebKit/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js
@@ -139,7 +139,7 @@
}
function serializeSVGRect(rect) {
- return String([rect.x, rect.y, rect.width, rect.height]);
+ return [rect.x, rect.y, rect.width, rect.height].join(', ');
}
function serializeSVGTransformList(transformList) {

Powered by Google App Engine
This is Rietveld 408576698