Index: Source/web/WebViewImpl.cpp |
diff --git a/Source/web/WebViewImpl.cpp b/Source/web/WebViewImpl.cpp |
index 871fb60183952edd957b65d44bbf765565cf2aad..e39f22c293cdbbd65c29ef6bc69e1c0ac7e26877 100644 |
--- a/Source/web/WebViewImpl.cpp |
+++ b/Source/web/WebViewImpl.cpp |
@@ -3157,6 +3157,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); |