| Index: third_party/WebKit/Source/core/input/MouseEventManager.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/MouseEventManager.cpp b/third_party/WebKit/Source/core/input/MouseEventManager.cpp
|
| index 286cdec581abaee057e72bb4e36fc13c18681195..f6f20ea698545f2219d8279e9652343eccf68788 100644
|
| --- a/third_party/WebKit/Source/core/input/MouseEventManager.cpp
|
| +++ b/third_party/WebKit/Source/core/input/MouseEventManager.cpp
|
| @@ -755,6 +755,10 @@ WebInputEventResult MouseEventManager::HandleMouseDraggedEvent(
|
| if (!mouse_pressed_)
|
| return WebInputEventResult::kNotHandled;
|
|
|
| + if (event.Event().pointer_type ==
|
| + blink::WebPointerProperties::PointerType::kPen)
|
| + return WebInputEventResult::kNotHandled;
|
| +
|
| if (HandleDrag(event, DragInitiator::kMouse))
|
| return WebInputEventResult::kHandledSystem;
|
|
|
|
|