| Index: Source/core/layout/svg/LayoutSVGRoot.cpp
|
| diff --git a/Source/core/layout/svg/LayoutSVGRoot.cpp b/Source/core/layout/svg/LayoutSVGRoot.cpp
|
| index e1d8d0ff6de1a9c9caaa681f37a97a122c13d0a7..3803102003a67ada27a1f444f0a70487d4b01872 100644
|
| --- a/Source/core/layout/svg/LayoutSVGRoot.cpp
|
| +++ b/Source/core/layout/svg/LayoutSVGRoot.cpp
|
| @@ -407,7 +407,7 @@ bool LayoutSVGRoot::nodeAtPoint(const HitTestRequest& request, HitTestResult& re
|
| // FIXME: nodeAtFloatPoint() doesn't handle rect-based hit tests yet.
|
| if (child->nodeAtFloatPoint(request, result, localPoint, hitTestAction)) {
|
| updateHitTestResult(result, pointInBorderBox);
|
| - if (!result.addNodeToRectBasedTestResult(child->node(), request, locationInContainer))
|
| + if (!result.addNodeToListBasedTestResult(child->node(), request, locationInContainer))
|
| return true;
|
| }
|
| }
|
| @@ -423,7 +423,7 @@ bool LayoutSVGRoot::nodeAtPoint(const HitTestRequest& request, HitTestResult& re
|
| LayoutRect boundsRect(accumulatedOffset + location(), size());
|
| if (locationInContainer.intersects(boundsRect)) {
|
| updateHitTestResult(result, pointInBorderBox);
|
| - if (!result.addNodeToRectBasedTestResult(node(), request, locationInContainer, boundsRect))
|
| + if (!result.addNodeToListBasedTestResult(node(), request, locationInContainer, boundsRect))
|
| return true;
|
| }
|
| }
|
|
|