| Index: Source/web/WebViewImpl.cpp
|
| diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp
|
| index 2e8c4489c508032ec429afa3104707b1ace80892..cbbd1c14ad066cc020a41ea01f5e4b2fbfada867 100644
|
| --- a/Source/web/WebViewImpl.cpp
|
| +++ b/Source/web/WebViewImpl.cpp
|
| @@ -3219,6 +3219,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);
|
|
|