| Index: third_party/WebKit/Source/core/testing/Internals.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| index 1dd34866f725d64668bf7815fc52753f20e36e10..581c8bba0c350b8dc3f674150f57f37478136f47 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -1765,9 +1765,9 @@ StaticNodeList* Internals::nodesFromRect(Document* document,
|
| return nullptr;
|
|
|
| float zoomFactor = frame->pageZoomFactor();
|
| - LayoutPoint point = roundedLayoutPoint(
|
| - FloatPoint(centerX * zoomFactor + frameView->scrollX(),
|
| - centerY * zoomFactor + frameView->scrollY()));
|
| + LayoutPoint point =
|
| + LayoutPoint(FloatPoint(centerX * zoomFactor + frameView->scrollX(),
|
| + centerY * zoomFactor + frameView->scrollY()));
|
|
|
| HitTestRequest::HitTestRequestType hitType = HitTestRequest::ReadOnly |
|
| HitTestRequest::Active |
|
|
|