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

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

Issue 1158603003: CSS Independent Transform Properties (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Correct equality operators and remove dependencies on size() in parser Created 5 years, 6 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/animations/svg-attribute-interpolation/resources/interpolation-test.js
diff --git a/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js b/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js
index 22cb9106b2bc5303166985e41e6ee0553dd0dd9b..7d0b43540481c1f9bb6ee604ad614c7c0fee9643 100644
--- a/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js
+++ b/LayoutTests/animations/svg-attribute-interpolation/resources/interpolation-test.js
@@ -469,6 +469,24 @@
}
}
+ // The following collide with CSS properties or the Web Animations API (offset).
Eric Willigers 2015/06/11 02:15:19 I recently made a change that retired svgPrefixedA
soonm 2015/06/11 23:31:03 Done - Reverted my change to match master.
+ var svgPrefixedAttributes = [
+ 'cx',
+ 'cy',
+ 'height',
+ 'offset',
+ 'order',
+ 'r',
+ 'rx',
+ 'ry',
+ 'transform',
+ 'width',
+ 'x',
+ 'y',
+ 'rotate',
+ 'scale'
+ ];
+
function makeKeyframes(target, attributeName, params) {
// Replace 'transform' with 'svgTransform', etc. This avoids collisions with CSS properties or the Web Animations API (offset).
attributeName = 'svg' + attributeName[0].toUpperCase() + attributeName.slice(1);

Powered by Google App Engine
This is Rietveld 408576698