| Index: sky/engine/web/WebLocalFrameImpl.cpp
|
| diff --git a/sky/engine/web/WebLocalFrameImpl.cpp b/sky/engine/web/WebLocalFrameImpl.cpp
|
| index cb290495c3fc6c590c7964cd21d7f57200c71e26..035661356d2fe279eaf85118dc1f10cd66ec51b9 100644
|
| --- a/sky/engine/web/WebLocalFrameImpl.cpp
|
| +++ b/sky/engine/web/WebLocalFrameImpl.cpp
|
| @@ -475,7 +475,7 @@ VisiblePosition WebLocalFrameImpl::visiblePositionForWindowPoint(const WebPoint&
|
| {
|
| HitTestRequest request = HitTestRequest::Move | HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::IgnoreClipping;
|
| HitTestResult result(frame()->view()->windowToContents(roundedIntPoint(FloatPoint(point))));
|
| - frame()->document()->renderView()->layer()->hitTest(request, result.hitTestLocation(), result);
|
| + frame()->document()->renderView()->hitTest(request, result.hitTestLocation(), result);
|
|
|
| if (Node* node = result.targetNode())
|
| return frame()->selection().selection().visiblePositionRespectingEditingBoundary(result.localPoint(), node);
|
|
|