| Index: Source/core/svg/SVGGElement.cpp
|
| diff --git a/Source/core/svg/SVGGElement.cpp b/Source/core/svg/SVGGElement.cpp
|
| index 20e2dd875fad6a702b0066b39097f7282c87a14a..aa767c0b94a33dfe32e0792e180d9e0a15f22e25 100644
|
| --- a/Source/core/svg/SVGGElement.cpp
|
| +++ b/Source/core/svg/SVGGElement.cpp
|
| @@ -38,17 +38,16 @@ BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGGElement)
|
| REGISTER_PARENT_ANIMATED_PROPERTIES(SVGGraphicsElement)
|
| END_REGISTER_ANIMATED_PROPERTIES
|
|
|
| -SVGGElement::SVGGElement(const QualifiedName& tagName, Document& document, ConstructionType constructionType)
|
| - : SVGGraphicsElement(tagName, document, constructionType)
|
| +SVGGElement::SVGGElement(Document& document, ConstructionType constructionType)
|
| + : SVGGraphicsElement(SVGNames::gTag, document, constructionType)
|
| {
|
| - ASSERT(hasTagName(SVGNames::gTag));
|
| ScriptWrappable::init(this);
|
| registerAnimatedPropertiesForSVGGElement();
|
| }
|
|
|
| -PassRefPtr<SVGGElement> SVGGElement::create(const QualifiedName& tagName, Document& document)
|
| +PassRefPtr<SVGGElement> SVGGElement::create(Document& document)
|
| {
|
| - return adoptRef(new SVGGElement(tagName, document));
|
| + return adoptRef(new SVGGElement(document));
|
| }
|
|
|
| bool SVGGElement::isSupportedAttribute(const QualifiedName& attrName)
|
|
|