Index: third_party/WebKit/Source/core/layout/LayoutTable.cpp |
diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.cpp b/third_party/WebKit/Source/core/layout/LayoutTable.cpp |
index 58eaf8e98cf42bbe6c34a16f97ecddc992b1074b..b0a76c420e6315f8bc2216dcc3b4e223d16cf1fd 100644 |
--- a/third_party/WebKit/Source/core/layout/LayoutTable.cpp |
+++ b/third_party/WebKit/Source/core/layout/LayoutTable.cpp |
@@ -1356,7 +1356,7 @@ bool LayoutTable::nodeAtPoint(HitTestResult& result, const HitTestLocation& loca |
LayoutRect boundsRect(adjustedLocation, size()); |
if (visibleToHitTestRequest(result.hitTestRequest()) && (action == HitTestBlockBackground || action == HitTestChildBlockBackground) && locationInContainer.intersects(boundsRect)) { |
updateHitTestResult(result, flipForWritingMode(locationInContainer.point() - toLayoutSize(adjustedLocation))); |
- if (!result.addNodeToListBasedTestResult(node(), locationInContainer, boundsRect)) |
+ if (result.addNodeToListBasedTestResult(node(), locationInContainer, boundsRect) == StopHitTesting) |
return true; |
} |