Index: Source/core/svg/SVGAnimatedType.cpp |
diff --git a/Source/core/svg/SVGAnimatedType.cpp b/Source/core/svg/SVGAnimatedType.cpp |
index 8fc2c7300473732c0984f0f502f5f6e8193af90b..8816e7af108aacc81f3a9901138ef266cbf76549 100644 |
--- a/Source/core/svg/SVGAnimatedType.cpp |
+++ b/Source/core/svg/SVGAnimatedType.cpp |
@@ -250,7 +250,7 @@ String SVGAnimatedType::valueAsString() |
ASSERT(m_data.string); |
return *m_data.string; |
- // These types don't appear in the table in SVGStyledElement::cssPropertyToTypeMap() and thus don't need valueAsString() support. |
+ // These types don't appear in the table in SVGElement::cssPropertyToTypeMap() and thus don't need valueAsString() support. |
case AnimatedAngle: |
case AnimatedBoolean: |
case AnimatedEnumeration: |
@@ -301,7 +301,7 @@ bool SVGAnimatedType::setValueAsString(const QualifiedName& attrName, const Stri |
*m_data.string = value; |
break; |
- // These types don't appear in the table in SVGStyledElement::cssPropertyToTypeMap() and thus don't need setValueAsString() support. |
+ // These types don't appear in the table in SVGElement::cssPropertyToTypeMap() and thus don't need setValueAsString() support. |
case AnimatedAngle: |
case AnimatedBoolean: |
case AnimatedEnumeration: |