| Index: third_party/WebKit/Source/core/input/EventHandler.cpp
|
| diff --git a/third_party/WebKit/Source/core/input/EventHandler.cpp b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| index b46fd2760b71a3b29afe95bbad213069b825f6d9..9c493509de23239b2fe56dfc1b07e9e7ef45db2b 100644
|
| --- a/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| +++ b/third_party/WebKit/Source/core/input/EventHandler.cpp
|
| @@ -473,7 +473,7 @@ HitTestResult EventHandler::hitTestResultAtPoint(const LayoutPoint& point, HitTe
|
|
|
| // hitTestResultAtPoint is specifically used to hitTest into all frames, thus it always allows child frame content.
|
| HitTestRequest request(hitType | HitTestRequest::AllowChildFrameContent);
|
| - HitTestResult result(request, point, padding.height(), padding.width(), padding.height(), padding.width());
|
| + HitTestResult result(request, point, padding.height().toUnsigned(), padding.width().toUnsigned(), padding.height().toUnsigned(), padding.width().toUnsigned());
|
|
|
| // LayoutView::hitTest causes a layout, and we don't want to hit that until the first
|
| // layout because until then, there is nothing shown on the screen - the user can't
|
|
|