| Index: Source/core/svg/SVGFontFaceFormatElement.cpp
|
| diff --git a/Source/core/svg/SVGFontFaceFormatElement.cpp b/Source/core/svg/SVGFontFaceFormatElement.cpp
|
| index 94970ccf26b9201781a59dff1323d13aa82a0d35..5468bdb240e49de02a0d0803db8c326453c8d15d 100644
|
| --- a/Source/core/svg/SVGFontFaceFormatElement.cpp
|
| +++ b/Source/core/svg/SVGFontFaceFormatElement.cpp
|
| @@ -29,16 +29,15 @@ namespace WebCore {
|
|
|
| using namespace SVGNames;
|
|
|
| -inline SVGFontFaceFormatElement::SVGFontFaceFormatElement(const QualifiedName& tagName, Document& document)
|
| - : SVGElement(tagName, document)
|
| +inline SVGFontFaceFormatElement::SVGFontFaceFormatElement(Document& document)
|
| + : SVGElement(font_face_formatTag, document)
|
| {
|
| - ASSERT(hasTagName(font_face_formatTag));
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| -PassRefPtr<SVGFontFaceFormatElement> SVGFontFaceFormatElement::create(const QualifiedName& tagName, Document& document)
|
| +PassRefPtr<SVGFontFaceFormatElement> SVGFontFaceFormatElement::create(Document& document)
|
| {
|
| - return adoptRef(new SVGFontFaceFormatElement(tagName, document));
|
| + return adoptRef(new SVGFontFaceFormatElement(document));
|
| }
|
|
|
| void SVGFontFaceFormatElement::childrenChanged(bool changedByParser, Node* beforeChange, Node* afterChange, int childCountDelta)
|
|
|