diff options
Diffstat (limited to 'WebCore/html/HTMLLIElement.cpp')
-rw-r--r-- | WebCore/html/HTMLLIElement.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/WebCore/html/HTMLLIElement.cpp b/WebCore/html/HTMLLIElement.cpp index ae96cc3..9abea9f 100644 --- a/WebCore/html/HTMLLIElement.cpp +++ b/WebCore/html/HTMLLIElement.cpp @@ -116,24 +116,4 @@ void HTMLLIElement::attach() } } -String HTMLLIElement::type() const -{ - return getAttribute(typeAttr); -} - -void HTMLLIElement::setType(const String& value) -{ - setAttribute(typeAttr, value); -} - -int HTMLLIElement::value() const -{ - return getAttribute(valueAttr).toInt(); -} - -void HTMLLIElement::setValue(int value) -{ - setAttribute(valueAttr, String::number(value)); -} - } |