| Index: Source/core/rendering/EllipsisBox.cpp
|
| diff --git a/Source/core/rendering/EllipsisBox.cpp b/Source/core/rendering/EllipsisBox.cpp
|
| index bbdba5f34b816631b46a92f79ffdfa4060b2da68..1ed407f7339bb973715c5fbe74555e33eed64ce1 100644
|
| --- a/Source/core/rendering/EllipsisBox.cpp
|
| +++ b/Source/core/rendering/EllipsisBox.cpp
|
| @@ -79,9 +79,9 @@ bool EllipsisBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& resu
|
| }
|
| }
|
|
|
| - FloatPoint boxOrigin = locationIncludingFlipping();
|
| + FloatPointWillBeLayoutPoint boxOrigin = locationIncludingFlipping();
|
| boxOrigin.moveBy(accumulatedOffset);
|
| - FloatRect boundsRect(boxOrigin, size());
|
| + FloatRectWillBeLayoutRect boundsRect(boxOrigin, size());
|
| if (visibleToHitTestRequest(request) && boundsRect.intersects(HitTestLocation::rectForPoint(locationInContainer.point(), 0, 0, 0, 0))) {
|
| renderer().updateHitTestResult(result, locationInContainer.point() - toLayoutSize(adjustedLocation));
|
| if (!result.addNodeToRectBasedTestResult(renderer().node(), request, locationInContainer, boundsRect))
|
|
|