| Index: Source/core/layout/LayoutBlock.cpp
|
| diff --git a/Source/core/layout/LayoutBlock.cpp b/Source/core/layout/LayoutBlock.cpp
|
| index a7d77196975521821b2c404b7f92051b3b1ea6c3..0790560038e8c6f617dee0c89cccd072eb79a77a 100644
|
| --- a/Source/core/layout/LayoutBlock.cpp
|
| +++ b/Source/core/layout/LayoutBlock.cpp
|
| @@ -3487,10 +3487,8 @@ void LayoutBlock::updateHitTestResult(HitTestResult& result, const LayoutPoint&
|
| if (result.innerNode())
|
| return;
|
|
|
| - if (Node* n = nodeForHitTest()) {
|
| - result.setInnerNode(n);
|
| - result.setLocalPoint(point);
|
| - }
|
| + if (Node* n = nodeForHitTest())
|
| + result.setNodeAndPosition(n, point);
|
| }
|
|
|
| // An inline-block uses its inlineBox as the inlineBoxWrapper,
|
|
|