summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLTableColElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLTableColElement.cpp')
-rw-r--r--WebCore/html/HTMLTableColElement.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/WebCore/html/HTMLTableColElement.cpp b/WebCore/html/HTMLTableColElement.cpp
index 6c2f1fe..20b0f36 100644
--- a/WebCore/html/HTMLTableColElement.cpp
+++ b/WebCore/html/HTMLTableColElement.cpp
@@ -47,26 +47,6 @@ PassRefPtr<HTMLTableColElement> HTMLTableColElement::create(const QualifiedName&
return adoptRef(new HTMLTableColElement(tagName, document));
}
-HTMLTagStatus HTMLTableColElement::endTagRequirement() const
-{
- return hasLocalName(colTag) ? TagStatusForbidden : TagStatusOptional;
-}
-
-int HTMLTableColElement::tagPriority() const
-{
- return hasLocalName(colTag) ? 0 : 1;
-}
-
-bool HTMLTableColElement::checkDTD(const Node* newChild)
-{
- if (hasLocalName(colTag))
- return false;
-
- if (newChild->isTextNode())
- return static_cast<const Text*>(newChild)->containsOnlyWhitespace();
- return newChild->hasTagName(colTag);
-}
-
bool HTMLTableColElement::mapToEntry(const QualifiedName& attrName, MappedAttributeEntry& result) const
{
if (attrName == widthAttr) {