diff options
Diffstat (limited to 'WebCore/html/HTMLFontElement.cpp')
-rw-r--r-- | WebCore/html/HTMLFontElement.cpp | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/WebCore/html/HTMLFontElement.cpp b/WebCore/html/HTMLFontElement.cpp index 74320de..81ae415 100644 --- a/WebCore/html/HTMLFontElement.cpp +++ b/WebCore/html/HTMLFontElement.cpp @@ -149,34 +149,4 @@ void HTMLFontElement::parseMappedAttribute(Attribute* attr) HTMLElement::parseMappedAttribute(attr); } -String HTMLFontElement::color() const -{ - return getAttribute(colorAttr); -} - -void HTMLFontElement::setColor(const String& value) -{ - setAttribute(colorAttr, value); -} - -String HTMLFontElement::face() const -{ - return getAttribute(faceAttr); -} - -void HTMLFontElement::setFace(const String& value) -{ - setAttribute(faceAttr, value); -} - -String HTMLFontElement::size() const -{ - return getAttribute(sizeAttr); -} - -void HTMLFontElement::setSize(const String& value) -{ - setAttribute(sizeAttr, value); -} - } |