diff options
Diffstat (limited to 'WebCore/html/HTMLPlugInElement.cpp')
-rw-r--r-- | WebCore/html/HTMLPlugInElement.cpp | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/WebCore/html/HTMLPlugInElement.cpp b/WebCore/html/HTMLPlugInElement.cpp index 7aa6083..2f429b4 100644 --- a/WebCore/html/HTMLPlugInElement.cpp +++ b/WebCore/html/HTMLPlugInElement.cpp @@ -91,16 +91,6 @@ PassScriptInstance HTMLPlugInElement::getInstance() const return m_instance; } -String HTMLPlugInElement::align() const -{ - return getAttribute(alignAttr); -} - -void HTMLPlugInElement::setAlign(const String& value) -{ - setAttribute(alignAttr, value); -} - String HTMLPlugInElement::height() const { return getAttribute(heightAttr); @@ -111,16 +101,6 @@ void HTMLPlugInElement::setHeight(const String& value) setAttribute(heightAttr, value); } -String HTMLPlugInElement::name() const -{ - return getAttribute(nameAttr); -} - -void HTMLPlugInElement::setName(const String& value) -{ - setAttribute(nameAttr, value); -} - String HTMLPlugInElement::width() const { return getAttribute(widthAttr); |