| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index 754995e899b0946093ec5f3d4badcb182af518d3..696ec056a5e0f32d27dc7840a7b6ba45e5270092 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -3156,6 +3156,11 @@ void WebViewImpl::performPluginAction(const WebPluginAction& action,
|
|
|
| WebHitTestResult WebViewImpl::hitTestResultAt(const WebPoint& point)
|
| {
|
| + return coreHitTestResultAt(point);
|
| +}
|
| +
|
| +HitTestResult WebViewImpl::coreHitTestResultAt(const WebPoint& point)
|
| +{
|
| IntPoint scaledPoint = point;
|
| scaledPoint.scale(1 / pageScaleFactor(), 1 / pageScaleFactor());
|
| return hitTestResultForWindowPos(scaledPoint);
|
|
|