Index: Source/core/html/HTMLMetaElement-in.cpp |
diff --git a/Source/core/html/HTMLMetaElement-in.cpp b/Source/core/html/HTMLMetaElement-in.cpp |
index e1f39d2dc540bffc94b362447eb62a6531339060..18697f4b4420fde18c11de22f4ee156c04c45e7b 100644 |
--- a/Source/core/html/HTMLMetaElement-in.cpp |
+++ b/Source/core/html/HTMLMetaElement-in.cpp |
@@ -45,21 +45,15 @@ if (!source.is8Bit()) { \ |
using namespace HTMLNames; |
-inline HTMLMetaElement::HTMLMetaElement(const QualifiedName& tagName, Document& document) |
- : HTMLElement(tagName, document) |
+inline HTMLMetaElement::HTMLMetaElement(Document& document) |
+ : HTMLElement(metaTag, document) |
{ |
- ASSERT(hasTagName(metaTag)); |
ScriptWrappable::init(this); |
} |
PassRefPtr<HTMLMetaElement> HTMLMetaElement::create(Document& document) |
{ |
- return adoptRef(new HTMLMetaElement(metaTag, document)); |
-} |
- |
-PassRefPtr<HTMLMetaElement> HTMLMetaElement::create(const QualifiedName& tagName, Document& document) |
-{ |
- return adoptRef(new HTMLMetaElement(tagName, document)); |
+ return adoptRef(new HTMLMetaElement(document)); |
} |
static bool isInvalidSeparator(UChar c) |