Index: Source/core/svg/SVGPolylineElement.cpp |
diff --git a/Source/core/svg/SVGPolylineElement.cpp b/Source/core/svg/SVGPolylineElement.cpp |
index 15b878d76a6fdd7a177a5c629e8fe9f998907167..5276a406fed0a1cd454bd8d43ee01a9a8b74d9b7 100644 |
--- a/Source/core/svg/SVGPolylineElement.cpp |
+++ b/Source/core/svg/SVGPolylineElement.cpp |
@@ -25,16 +25,15 @@ |
namespace WebCore { |
-inline SVGPolylineElement::SVGPolylineElement(const QualifiedName& tagName, Document& document) |
- : SVGPolyElement(tagName, document) |
+inline SVGPolylineElement::SVGPolylineElement(Document& document) |
+ : SVGPolyElement(SVGNames::polylineTag, document) |
{ |
- ASSERT(hasTagName(SVGNames::polylineTag)); |
ScriptWrappable::init(this); |
} |
-PassRefPtr<SVGPolylineElement> SVGPolylineElement::create(const QualifiedName& tagName, Document& document) |
+PassRefPtr<SVGPolylineElement> SVGPolylineElement::create(Document& document) |
{ |
- return adoptRef(new SVGPolylineElement(tagName, document)); |
+ return adoptRef(new SVGPolylineElement(document)); |
} |
} |