summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLTableSectionElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLTableSectionElement.cpp')
-rw-r--r--WebCore/html/HTMLTableSectionElement.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/WebCore/html/HTMLTableSectionElement.cpp b/WebCore/html/HTMLTableSectionElement.cpp
index 8190d93..900976c 100644
--- a/WebCore/html/HTMLTableSectionElement.cpp
+++ b/WebCore/html/HTMLTableSectionElement.cpp
@@ -1,6 +1,4 @@
/**
- * This file is part of the DOM implementation for KDE.
- *
* Copyright (C) 1997 Martin Jones (mjones@kde.org)
* (C) 1997 Torben Weis (weis@kde.org)
* (C) 1998 Waldo Bastian (bastian@kde.org)
@@ -86,7 +84,7 @@ PassRefPtr<HTMLElement> HTMLTableSectionElement::insertRow(int index, ExceptionC
if (index < -1 || index > numRows)
ec = INDEX_SIZE_ERR; // per the DOM
else {
- r = new HTMLTableRowElement(document());
+ r = new HTMLTableRowElement(trTag, document());
if (numRows == index || index == -1)
appendChild(r, ec);
else {