| Index: third_party/WebKit/Source/core/html/forms/KeyboardClickableInputTypeView.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/KeyboardClickableInputTypeView.cpp b/third_party/WebKit/Source/core/html/forms/KeyboardClickableInputTypeView.cpp
|
| index 58439faeba550d6f141742c70d6f0c4df7cfecd6..ec93e9db9c39b4eb2d60ebbd9ea0664d81856a7b 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/KeyboardClickableInputTypeView.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/KeyboardClickableInputTypeView.cpp
|
| @@ -43,7 +43,8 @@ void KeyboardClickableInputTypeView::handleKeydownEvent(KeyboardEvent* event) {
|
| if (key == " ") {
|
| element().setActive(true);
|
| // No setDefaultHandled(), because IE dispatches a keypress in this case
|
| - // and the caller will only dispatch a keypress if we don't call setDefaultHandled().
|
| + // and the caller will only dispatch a keypress if we don't call
|
| + // setDefaultHandled().
|
| }
|
| }
|
|
|
| @@ -68,7 +69,8 @@ void KeyboardClickableInputTypeView::handleKeyupEvent(KeyboardEvent* event) {
|
| dispatchSimulatedClickIfActive(event);
|
| }
|
|
|
| -// FIXME: Could share this with BaseCheckableInputType and RangeInputType if we had a common base class.
|
| +// FIXME: Could share this with BaseCheckableInputType and RangeInputType if we
|
| +// had a common base class.
|
| void KeyboardClickableInputTypeView::accessKeyAction(bool sendMouseEvents) {
|
| InputTypeView::accessKeyAction(sendMouseEvents);
|
| element().dispatchSimulatedClick(
|
|
|