Index: Source/core/svg/SVGFontFaceSrcElement.cpp |
diff --git a/Source/core/svg/SVGFontFaceSrcElement.cpp b/Source/core/svg/SVGFontFaceSrcElement.cpp |
index e5ba1db9634660174760d1da7a8634cfeefddac9..bc2254ddea8d9386f5da3b98626b9d3e945aa483 100644 |
--- a/Source/core/svg/SVGFontFaceSrcElement.cpp |
+++ b/Source/core/svg/SVGFontFaceSrcElement.cpp |
@@ -33,16 +33,15 @@ namespace WebCore { |
using namespace SVGNames; |
-inline SVGFontFaceSrcElement::SVGFontFaceSrcElement(const QualifiedName& tagName, Document& document) |
- : SVGElement(tagName, document) |
+inline SVGFontFaceSrcElement::SVGFontFaceSrcElement(Document& document) |
+ : SVGElement(font_face_srcTag, document) |
{ |
- ASSERT(hasTagName(font_face_srcTag)); |
ScriptWrappable::init(this); |
} |
-PassRefPtr<SVGFontFaceSrcElement> SVGFontFaceSrcElement::create(const QualifiedName& tagName, Document& document) |
+PassRefPtr<SVGFontFaceSrcElement> SVGFontFaceSrcElement::create(Document& document) |
{ |
- return adoptRef(new SVGFontFaceSrcElement(tagName, document)); |
+ return adoptRef(new SVGFontFaceSrcElement(document)); |
} |
PassRefPtr<CSSValueList> SVGFontFaceSrcElement::srcValue() const |