 Chromium Code Reviews
 Chromium Code Reviews Issue 1158603003:
  CSS Independent Transform Properties  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master
    
  
    Issue 1158603003:
  CSS Independent Transform Properties  (Closed) 
  Base URL: https://chromium.googlesource.com/chromium/blink.git@master| 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); |