| Index: third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| index beaf2921ee9f69ecee1b52b110772f24376014f7..e5a1a5fe098acadcbd490dc622671244d3e380cd 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| @@ -326,6 +326,10 @@ WebInputEventResult WebFrameWidgetImpl::handleInputEvent(
|
| TRACE_EVENT1("input", "WebFrameWidgetImpl::handleInputEvent", "type",
|
| WebInputEvent::GetName(inputEvent.type));
|
|
|
| + // If a drag-and-drop operation is in progress, ignore input events.
|
| + if (m_doingDragAndDrop)
|
| + return WebInputEventResult::HandledSuppressed;
|
| +
|
| // Don't handle events once we've started shutting down.
|
| if (!page())
|
| return WebInputEventResult::NotHandled;
|
|
|