Index: Source/core/animation/css/CSSAnimatableValueFactory.cpp |
diff --git a/Source/core/animation/css/CSSAnimatableValueFactory.cpp b/Source/core/animation/css/CSSAnimatableValueFactory.cpp |
index b8996a697dab8022c1101312f0a84a0aedc62518..b88291e15f852807777cc56cc2f965473f7c4eb8 100644 |
--- a/Source/core/animation/css/CSSAnimatableValueFactory.cpp |
+++ b/Source/core/animation/css/CSSAnimatableValueFactory.cpp |
@@ -537,10 +537,16 @@ PassRefPtrWillBeRawPtr<AnimatableValue> CSSAnimatableValueFactory::create(CSSPro |
return AnimatableUnknown::create(CSSPrimitiveValue::create(style.verticalAlign())); |
case CSSPropertyVisibility: |
return AnimatableVisibility::create(style.visibility()); |
+ case CSSPropertyCx: |
+ return createFromLength(style.svgStyle().cx(), style); |
+ case CSSPropertyCy: |
+ return createFromLength(style.svgStyle().cy(), style); |
case CSSPropertyX: |
return createFromLength(style.svgStyle().x(), style); |
case CSSPropertyY: |
return createFromLength(style.svgStyle().y(), style); |
+ case CSSPropertyR: |
+ return createFromLength(style.svgStyle().r(), style); |
case CSSPropertyRx: |
return createFromLength(style.svgStyle().rx(), style); |
case CSSPropertyRy: |