| 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 90b9be8949c88423fabb0ebdbaa9b3ca8e99b9f1..2c62e286b91b1750926f4b3117f3c89be0ee8c0e 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameWidgetImpl.cpp
|
| @@ -741,7 +741,7 @@ void WebFrameWidgetImpl::handleMouseDown(LocalFrame& mainFrame,
|
| // Take capture on a mouse down on a plugin so we can send it mouse events.
|
| // If the hit node is a plugin but a scrollbar is over it don't start mouse
|
| // capture because it will interfere with the scrollbar receiving events.
|
| - IntPoint point(event.x, event.y);
|
| + IntPoint point(event.position.x, event.position.y);
|
| if (event.button == WebMouseEvent::Button::Left) {
|
| point = m_localRoot->frameView()->rootFrameToContents(point);
|
| HitTestResult result(
|
|
|