Index: third_party/WebKit/Source/core/svg/SVGCircleElement.cpp |
diff --git a/third_party/WebKit/Source/core/svg/SVGCircleElement.cpp b/third_party/WebKit/Source/core/svg/SVGCircleElement.cpp |
index 42bd6a8fff565eb3e226eb819beb3a81b6c6be7a..162c24310cf117e33368f1c84e2330afc9b25021 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGCircleElement.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGCircleElement.cpp |
@@ -83,13 +83,13 @@ void SVGCircleElement::collectStyleForPresentationAttribute( |
MutableStylePropertySet* style) { |
SVGAnimatedPropertyBase* property = propertyFromAttribute(name); |
if (property == m_cx) { |
- addPropertyToPresentationAttributeStyle(style, CSSPropertyCx, |
+ addPropertyToPresentationAttributeStyle(style, property->cssPropertyId(), |
m_cx->cssValue()); |
} else if (property == m_cy) { |
- addPropertyToPresentationAttributeStyle(style, CSSPropertyCy, |
+ addPropertyToPresentationAttributeStyle(style, property->cssPropertyId(), |
m_cy->cssValue()); |
} else if (property == m_r) { |
- addPropertyToPresentationAttributeStyle(style, CSSPropertyR, |
+ addPropertyToPresentationAttributeStyle(style, property->cssPropertyId(), |
m_r->cssValue()); |
} else { |
SVGGeometryElement::collectStyleForPresentationAttribute(name, value, |