Index: Source/core/inspector/InspectorOverlay.cpp |
diff --git a/Source/core/inspector/InspectorOverlay.cpp b/Source/core/inspector/InspectorOverlay.cpp |
index ee8ac0b5299b637f3e8254a39e465da21fac81a9..73a5804585a06fd0d058822315b489bc921ba831 100644 |
--- a/Source/core/inspector/InspectorOverlay.cpp |
+++ b/Source/core/inspector/InspectorOverlay.cpp |
@@ -494,7 +494,7 @@ static void appendPathCommandAndPoints(PathApplyInfo* info, const String& comman |
info->array->addItem(JSONString::create(command)); |
for (unsigned i = 0; i < length; i++) { |
point = info->shapeOutsideInfo->shapeToRendererPoint(points[i]); |
- point = info->view->contentsToRootView(roundedIntPoint(info->renderer->localToAbsolute(point))) + info->rootView->scrollOffset(); |
+ point = info->view->contentsToRootView(roundedIntPoint(info->renderer->localToAbsolute(point))); |
info->array->addItem(JSONBasicValue::create(point.x())); |
info->array->addItem(JSONBasicValue::create(point.y())); |
} |