| Index: Source/core/svg/SVGFontFaceNameElement.cpp
|
| diff --git a/Source/core/svg/SVGFontFaceNameElement.cpp b/Source/core/svg/SVGFontFaceNameElement.cpp
|
| index 8157a5e39d1d3bcac16d146090e4798f1551cb10..79f25514f62ee655652c60121509ace2ac595ad6 100644
|
| --- a/Source/core/svg/SVGFontFaceNameElement.cpp
|
| +++ b/Source/core/svg/SVGFontFaceNameElement.cpp
|
| @@ -27,16 +27,15 @@
|
|
|
| namespace WebCore {
|
|
|
| -inline SVGFontFaceNameElement::SVGFontFaceNameElement(const QualifiedName& tagName, Document& document)
|
| - : SVGElement(tagName, document)
|
| +inline SVGFontFaceNameElement::SVGFontFaceNameElement(Document& document)
|
| + : SVGElement(SVGNames::font_face_nameTag, document)
|
| {
|
| - ASSERT(hasTagName(SVGNames::font_face_nameTag));
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtr<SVGFontFaceNameElement> SVGFontFaceNameElement::create(const QualifiedName& tagName, Document& document)
|
| +PassRefPtr<SVGFontFaceNameElement> SVGFontFaceNameElement::create(Document& document)
|
| {
|
| - return adoptRef(new SVGFontFaceNameElement(tagName, document));
|
| + return adoptRef(new SVGFontFaceNameElement(document));
|
| }
|
|
|
| PassRefPtr<CSSFontFaceSrcValue> SVGFontFaceNameElement::srcValue() const
|
|
|