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.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/WebCore/html/HTMLTableSectionElement.cpp b/WebCore/html/HTMLTableSectionElement.cpp
index 122af8a..93bfef2 100644
--- a/WebCore/html/HTMLTableSectionElement.cpp
+++ b/WebCore/html/HTMLTableSectionElement.cpp
@@ -55,18 +55,18 @@ bool HTMLTableSectionElement::checkDTD(const Node* newChild)
newChild->hasTagName(scriptTag);
}
-ContainerNode* HTMLTableSectionElement::addChild(PassRefPtr<Node> child)
+ContainerNode* HTMLTableSectionElement::legacyParserAddChild(PassRefPtr<Node> child)
{
if (child->hasTagName(formTag)) {
// First add the child.
- HTMLTablePartElement::addChild(child);
+ HTMLTablePartElement::legacyParserAddChild(child);
// Now simply return ourselves as the container to insert into.
// This has the effect of demoting the form to a leaf and moving it safely out of the way.
return this;
}
- return HTMLTablePartElement::addChild(child);
+ return HTMLTablePartElement::legacyParserAddChild(child);
}
// used by table row groups to share style decls created by the enclosing table.