Index: third_party/WebKit/Source/core/layout/line/EllipsisBox.cpp |
diff --git a/third_party/WebKit/Source/core/layout/line/EllipsisBox.cpp b/third_party/WebKit/Source/core/layout/line/EllipsisBox.cpp |
index ff7f9d518ebedbcaa959b848c9d706b8ef32bbb1..4cb7c30cc0ede08c34ed6b0bc7fb1c57e3c73b77 100644 |
--- a/third_party/WebKit/Source/core/layout/line/EllipsisBox.cpp |
+++ b/third_party/WebKit/Source/core/layout/line/EllipsisBox.cpp |
@@ -53,9 +53,7 @@ bool EllipsisBox::nodeAtPoint(HitTestResult& result, const HitTestLocation& loca |
LayoutRect boundsRect(boxOrigin, size()); |
if (visibleToHitTestRequest(result.hitTestRequest()) && boundsRect.intersects(LayoutRect(HitTestLocation::rectForPoint(locationInContainer.point(), 0, 0, 0, 0)))) { |
lineLayoutItem().updateHitTestResult(result, locationInContainer.point() - toLayoutSize(adjustedLocation)); |
- // FIXME: the call to rawValue() below is temporary and should be removed once the transition |
- // to LayoutUnit-based types is complete (crbug.com/321237) |
- if (!result.addNodeToListBasedTestResult(lineLayoutItem().node(), locationInContainer, boundsRect)) |
+ if (result.addNodeToListBasedTestResult(lineLayoutItem().node(), locationInContainer, boundsRect) == StopHitTesting) |
return true; |
} |