summaryrefslogtreecommitdiffstats
path: root/WebCore/html/HTMLButtonElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'WebCore/html/HTMLButtonElement.cpp')
-rw-r--r--WebCore/html/HTMLButtonElement.cpp17
1 files changed, 1 insertions, 16 deletions
diff --git a/WebCore/html/HTMLButtonElement.cpp b/WebCore/html/HTMLButtonElement.cpp
index 9f2cc9d..b4c8ec0 100644
--- a/WebCore/html/HTMLButtonElement.cpp
+++ b/WebCore/html/HTMLButtonElement.cpp
@@ -164,30 +164,15 @@ bool HTMLButtonElement::appendFormData(FormDataList& formData, bool)
}
void HTMLButtonElement::accessKeyAction(bool sendToAnyElement)
-{
+{
focus();
// send the mouse button events iff the caller specified sendToAnyElement
dispatchSimulatedClick(0, sendToAnyElement);
}
-String HTMLButtonElement::accessKey() const
-{
- return getAttribute(accesskeyAttr);
-}
-
-void HTMLButtonElement::setAccessKey(const String &value)
-{
- setAttribute(accesskeyAttr, value);
-}
-
String HTMLButtonElement::value() const
{
return getAttribute(valueAttr);
}
-void HTMLButtonElement::setValue(const String &value)
-{
- setAttribute(valueAttr, value);
-}
-
} // namespace