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.cpp45
1 files changed, 0 insertions, 45 deletions
diff --git a/WebCore/html/HTMLTableColElement.cpp b/WebCore/html/HTMLTableColElement.cpp
index 5269aaa..6c2f1fe 100644
--- a/WebCore/html/HTMLTableColElement.cpp
+++ b/WebCore/html/HTMLTableColElement.cpp
@@ -110,59 +110,14 @@ void HTMLTableColElement::additionalAttributeStyleDecls(Vector<CSSMutableStyleDe
static_cast<HTMLTableElement*>(p)->addSharedGroupDecls(false, results);
}
-String HTMLTableColElement::align() const
-{
- return getAttribute(alignAttr);
-}
-
-void HTMLTableColElement::setAlign(const String &value)
-{
- setAttribute(alignAttr, value);
-}
-
-String HTMLTableColElement::ch() const
-{
- return getAttribute(charAttr);
-}
-
-void HTMLTableColElement::setCh(const String &value)
-{
- setAttribute(charAttr, value);
-}
-
-String HTMLTableColElement::chOff() const
-{
- return getAttribute(charoffAttr);
-}
-
-void HTMLTableColElement::setChOff(const String &value)
-{
- setAttribute(charoffAttr, value);
-}
-
void HTMLTableColElement::setSpan(int n)
{
setAttribute(spanAttr, String::number(n));
}
-String HTMLTableColElement::vAlign() const
-{
- return getAttribute(valignAttr);
-}
-
-void HTMLTableColElement::setVAlign(const String &value)
-{
- setAttribute(valignAttr, value);
-}
-
String HTMLTableColElement::width() const
{
return getAttribute(widthAttr);
}
-void HTMLTableColElement::setWidth(const String &value)
-{
- setAttribute(widthAttr, value);
-}
-
}