summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLLegendElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLLegendElement.cpp')
-rw-r--r--WebCore/html/HTMLLegendElement.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/WebCore/html/HTMLLegendElement.cpp b/WebCore/html/HTMLLegendElement.cpp
index 4249fb1..acc4a59 100644
--- a/WebCore/html/HTMLLegendElement.cpp
+++ b/WebCore/html/HTMLLegendElement.cpp
@@ -54,26 +54,6 @@ const AtomicString& HTMLLegendElement::formControlType() const
return legend;
}
-String HTMLLegendElement::accessKey() const
-{
- return getAttribute(accesskeyAttr);
-}
-
-void HTMLLegendElement::setAccessKey(const String &value)
-{
- setAttribute(accesskeyAttr, value);
-}
-
-String HTMLLegendElement::align() const
-{
- return getAttribute(alignAttr);
-}
-
-void HTMLLegendElement::setAlign(const String &value)
-{
- setAttribute(alignAttr, value);
-}
-
HTMLFormControlElement* HTMLLegendElement::associatedControl()
{
// Check if there's a fieldset belonging to this legend.