| Index: Source/core/svg/SVGAnimateTransformElement.cpp
|
| diff --git a/Source/core/svg/SVGAnimateTransformElement.cpp b/Source/core/svg/SVGAnimateTransformElement.cpp
|
| index 755420076b45ea4b2d57d11cfa0adf399acbfb93..bd43e050070eb122ea355e55ab51453b234cbfae 100644
|
| --- a/Source/core/svg/SVGAnimateTransformElement.cpp
|
| +++ b/Source/core/svg/SVGAnimateTransformElement.cpp
|
| @@ -30,17 +30,16 @@
|
|
|
| namespace WebCore {
|
|
|
| -inline SVGAnimateTransformElement::SVGAnimateTransformElement(const QualifiedName& tagName, Document& document)
|
| - : SVGAnimateElement(tagName, document)
|
| +inline SVGAnimateTransformElement::SVGAnimateTransformElement(Document& document)
|
| + : SVGAnimateElement(SVGNames::animateTransformTag, document)
|
| , m_type(SVGTransform::SVG_TRANSFORM_UNKNOWN)
|
| {
|
| - ASSERT(hasTagName(SVGNames::animateTransformTag));
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtr<SVGAnimateTransformElement> SVGAnimateTransformElement::create(const QualifiedName& tagName, Document& document)
|
| +PassRefPtr<SVGAnimateTransformElement> SVGAnimateTransformElement::create(Document& document)
|
| {
|
| - return adoptRef(new SVGAnimateTransformElement(tagName, document));
|
| + return adoptRef(new SVGAnimateTransformElement(document));
|
| }
|
|
|
| bool SVGAnimateTransformElement::hasValidAttributeType()
|
|
|