| Index: Source/core/layout/LayoutPart.cpp
|
| diff --git a/Source/core/layout/LayoutPart.cpp b/Source/core/layout/LayoutPart.cpp
|
| index 64d689a9307682b0fa34b3dfda5fa0e3a16544b2..46979aebfc60ff3df5b2c54f262bb1bf59a93a33 100644
|
| --- a/Source/core/layout/LayoutPart.cpp
|
| +++ b/Source/core/layout/LayoutPart.cpp
|
| @@ -162,8 +162,8 @@ bool LayoutPart::nodeAtPoint(const HitTestRequest& request, HitTestResult& resul
|
|
|
| bool isInsideChildFrame = childRoot->hitTest(newHitTestRequest, newHitTestLocation, childFrameResult);
|
|
|
| - if (newHitTestLocation.isRectBasedTest())
|
| - result.append(childFrameResult);
|
| + if (request.listBased())
|
| + result.append(childFrameResult, request);
|
| else if (isInsideChildFrame)
|
| result = childFrameResult;
|
|
|
|
|