summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLHRElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLHRElement.cpp')
-rw-r--r--WebCore/html/HTMLHRElement.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/WebCore/html/HTMLHRElement.cpp b/WebCore/html/HTMLHRElement.cpp
index c4ab28f..44aa052 100644
--- a/WebCore/html/HTMLHRElement.cpp
+++ b/WebCore/html/HTMLHRElement.cpp
@@ -106,44 +106,4 @@ void HTMLHRElement::parseMappedAttribute(Attribute* attr)
HTMLElement::parseMappedAttribute(attr);
}
-String HTMLHRElement::align() const
-{
- return getAttribute(alignAttr);
-}
-
-void HTMLHRElement::setAlign(const String &value)
-{
- setAttribute(alignAttr, value);
-}
-
-bool HTMLHRElement::noShade() const
-{
- return !getAttribute(noshadeAttr).isNull();
-}
-
-void HTMLHRElement::setNoShade(bool noShade)
-{
- setAttribute(noshadeAttr, noShade ? "" : 0);
-}
-
-String HTMLHRElement::size() const
-{
- return getAttribute(sizeAttr);
-}
-
-void HTMLHRElement::setSize(const String &value)
-{
- setAttribute(sizeAttr, value);
-}
-
-String HTMLHRElement::width() const
-{
- return getAttribute(widthAttr);
-}
-
-void HTMLHRElement::setWidth(const String &value)
-{
- setAttribute(widthAttr, value);
-}
-
}