Index: Source/core/html/HTMLParamElement.cpp |
diff --git a/Source/core/html/HTMLParamElement.cpp b/Source/core/html/HTMLParamElement.cpp |
index cf558480abb0762e258c77326cb91315737bd7b7..d1e1cdd7dc46be9d618b095b57204a71826150a7 100644 |
--- a/Source/core/html/HTMLParamElement.cpp |
+++ b/Source/core/html/HTMLParamElement.cpp |
@@ -31,16 +31,15 @@ namespace WebCore { |
using namespace HTMLNames; |
-inline HTMLParamElement::HTMLParamElement(const QualifiedName& tagName, Document& document) |
- : HTMLElement(tagName, document) |
+inline HTMLParamElement::HTMLParamElement(Document& document) |
+ : HTMLElement(paramTag, document) |
{ |
- ASSERT(hasTagName(paramTag)); |
ScriptWrappable::init(this); |
} |
-PassRefPtr<HTMLParamElement> HTMLParamElement::create(const QualifiedName& tagName, Document& document) |
+PassRefPtr<HTMLParamElement> HTMLParamElement::create(Document& document) |
{ |
- return adoptRef(new HTMLParamElement(tagName, document)); |
+ return adoptRef(new HTMLParamElement(document)); |
} |
String HTMLParamElement::name() const |