| Index: Source/core/layout/LayoutBlockFlow.cpp
|
| diff --git a/Source/core/layout/LayoutBlockFlow.cpp b/Source/core/layout/LayoutBlockFlow.cpp
|
| index 6728921a5abe43100fab08ba7d7f5733c66597f4..f7561dd7f70e15ed252710c2958ca6d8a902401d 100644
|
| --- a/Source/core/layout/LayoutBlockFlow.cpp
|
| +++ b/Source/core/layout/LayoutBlockFlow.cpp
|
| @@ -2646,7 +2646,7 @@ LayoutUnit LayoutBlockFlow::nextFloatLogicalBottomBelow(LayoutUnit logicalHeight
|
| return logicalBottom;
|
| }
|
|
|
| -bool LayoutBlockFlow::hitTestFloats(const HitTestRequest& request, HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset)
|
| +bool LayoutBlockFlow::hitTestFloats(HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset)
|
| {
|
| if (!m_floatingObjects)
|
| return false;
|
| @@ -2666,7 +2666,7 @@ bool LayoutBlockFlow::hitTestFloats(const HitTestRequest& request, HitTestResult
|
| LayoutUnit xOffset = xPositionForFloatIncludingMargin(floatingObject) - floatingObject->layoutObject()->location().x();
|
| LayoutUnit yOffset = yPositionForFloatIncludingMargin(floatingObject) - floatingObject->layoutObject()->location().y();
|
| LayoutPoint childPoint = flipFloatForWritingModeForChild(floatingObject, adjustedLocation + LayoutSize(xOffset, yOffset));
|
| - if (floatingObject->layoutObject()->hitTest(request, result, locationInContainer, childPoint)) {
|
| + if (floatingObject->layoutObject()->hitTest(result, locationInContainer, childPoint)) {
|
| updateHitTestResult(result, locationInContainer.point() - toLayoutSize(childPoint));
|
| return true;
|
| }
|
|
|