| Index: third_party/WebKit/Source/core/events/MouseEvent.cpp
|
| diff --git a/third_party/WebKit/Source/core/events/MouseEvent.cpp b/third_party/WebKit/Source/core/events/MouseEvent.cpp
|
| index ecd784f39ceb1a64f781cddba08ca7b44f7cc59b..aea15a14bf7d97f372b85d5ff52683ab5a54adfd 100644
|
| --- a/third_party/WebKit/Source/core/events/MouseEvent.cpp
|
| +++ b/third_party/WebKit/Source/core/events/MouseEvent.cpp
|
| @@ -294,10 +294,6 @@ DispatchEventResult MouseEventDispatchMediator::dispatchEvent(EventDispatcher& d
|
| if (mouseEvent.type() != EventTypeNames::click || mouseEvent.detail() != 2)
|
| return dispatchResult;
|
|
|
| - // Do not send dblclick event for non-primary button clicks.
|
| - if (mouseEvent.button() != MouseButton::LeftButton)
|
| - return dispatchResult;
|
| -
|
| // Special case: If it's a double click event, we also send the dblclick event. This is not part
|
| // of the DOM specs, but is used for compatibility with the ondblclick="" attribute. This is treated
|
| // as a separate event in other DOM-compliant browsers like Firefox, and so we do the same.
|
|
|