| Index: Source/core/html/HTMLTableRowElement.cpp
|
| diff --git a/Source/core/html/HTMLTableRowElement.cpp b/Source/core/html/HTMLTableRowElement.cpp
|
| index 7a1bd700332ec5c1d2681722802fb603caa85a13..2f0312ca6e22a07a6ae4de8bdadb6dc7590b877d 100644
|
| --- a/Source/core/html/HTMLTableRowElement.cpp
|
| +++ b/Source/core/html/HTMLTableRowElement.cpp
|
| @@ -37,21 +37,15 @@ namespace WebCore {
|
|
|
| using namespace HTMLNames;
|
|
|
| -HTMLTableRowElement::HTMLTableRowElement(const QualifiedName& tagName, Document& document)
|
| - : HTMLTablePartElement(tagName, document)
|
| +HTMLTableRowElement::HTMLTableRowElement(Document& document)
|
| + : HTMLTablePartElement(trTag, document)
|
| {
|
| - ASSERT(hasTagName(trTag));
|
| ScriptWrappable::init(this);
|
| }
|
|
|
| PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(Document& document)
|
| {
|
| - return adoptRef(new HTMLTableRowElement(trTag, document));
|
| -}
|
| -
|
| -PassRefPtr<HTMLTableRowElement> HTMLTableRowElement::create(const QualifiedName& tagName, Document& document)
|
| -{
|
| - return adoptRef(new HTMLTableRowElement(tagName, document));
|
| + return adoptRef(new HTMLTableRowElement(document));
|
| }
|
|
|
| int HTMLTableRowElement::rowIndex() const
|
|
|