| Index: Source/core/inspector/InspectorDOMAgent.cpp
|
| diff --git a/Source/core/inspector/InspectorDOMAgent.cpp b/Source/core/inspector/InspectorDOMAgent.cpp
|
| index 9d1319887369679e13b0733e06892aa90063fc1b..94af3ccf32a184b5c8ba308347476dd8a225dace 100644
|
| --- a/Source/core/inspector/InspectorDOMAgent.cpp
|
| +++ b/Source/core/inspector/InspectorDOMAgent.cpp
|
| @@ -177,7 +177,7 @@ static Node* hoveredNodeForEvent(LocalFrame* frame, const PlatformTouchEvent& ev
|
| const Vector<PlatformTouchPoint>& points = event.touchPoints();
|
| if (!points.size())
|
| return 0;
|
| - return hoveredNodeForPoint(frame, points[0].pos(), ignorePointerEventsNone);
|
| + return hoveredNodeForPoint(frame, roundedIntPoint(points[0].pos()), ignorePointerEventsNone);
|
| }
|
|
|
| class RevalidateStyleAttributeTask {
|
|
|