| Index: Source/core/layout/LayoutTableRow.cpp
|
| diff --git a/Source/core/layout/LayoutTableRow.cpp b/Source/core/layout/LayoutTableRow.cpp
|
| index 7eea86c2b4802f5a9b69ff210d5d6bec612d2d47..66ae205198702444de1488d00232e7b9d1c5f43c 100644
|
| --- a/Source/core/layout/LayoutTableRow.cpp
|
| +++ b/Source/core/layout/LayoutTableRow.cpp
|
| @@ -205,7 +205,8 @@ bool LayoutTableRow::nodeAtPoint(HitTestResult& result, const HitTestLocation& l
|
| if (!cell->hasSelfPaintingLayer()) {
|
| LayoutPoint cellPoint = flipForWritingModeForChild(cell, accumulatedOffset);
|
| if (cell->nodeAtPoint(result, locationInContainer, cellPoint, action)) {
|
| - updateHitTestResult(result, locationInContainer.point() - toLayoutSize(cellPoint));
|
| + // TODO(dtapuska): Fix correct cell layout rect.
|
| + updateHitTestResult(result, locationInContainer.point() - toLayoutSize(cellPoint), result.validityRect());
|
| return true;
|
| }
|
| }
|
|
|