Index: Source/core/svg/SVGGraphicsElement.cpp |
diff --git a/Source/core/svg/SVGGraphicsElement.cpp b/Source/core/svg/SVGGraphicsElement.cpp |
index 75debeb992e1dfd5af2b41c58ec64952808d5c47..08e178a6969d1cfb0b55bb502638960209e31e5e 100644 |
--- a/Source/core/svg/SVGGraphicsElement.cpp |
+++ b/Source/core/svg/SVGGraphicsElement.cpp |
@@ -179,21 +179,7 @@ bool SVGGraphicsElement::isSupportedAttribute(const QualifiedName& attrName) |
void SVGGraphicsElement::parseAttribute(const QualifiedName& name, const AtomicString& value) |
{ |
- if (!isSupportedAttribute(name)) { |
- SVGElement::parseAttribute(name, value); |
- return; |
- } |
- |
- SVGParsingError parseError = NoError; |
- |
- if (name == SVGNames::transformAttr) |
- m_transform->setBaseValueAsString(value, parseError); |
- else if (SVGTests::parseAttribute(name, value)) |
- return; |
- else |
- ASSERT_NOT_REACHED(); |
- |
- reportAttributeParsingError(parseError, name, value); |
+ parseAttributeNew(name, value); |
} |
void SVGGraphicsElement::svgAttributeChanged(const QualifiedName& attrName) |