| Index: Source/core/rendering/RenderPart.cpp
|
| diff --git a/Source/core/rendering/RenderPart.cpp b/Source/core/rendering/RenderPart.cpp
|
| index 56c0d3176d5676c44c3e196ed9e483c3bc705fa0..abd183a3abd9d24b4585db3dccf857f43a2b067c 100644
|
| --- a/Source/core/rendering/RenderPart.cpp
|
| +++ b/Source/core/rendering/RenderPart.cpp
|
| @@ -113,15 +113,6 @@ bool RenderPart::nodeAtPoint(const HitTestRequest& request, HitTestResult& resul
|
|
|
| if (isInsideChildFrame)
|
| return true;
|
| -
|
| - if (request.allowsFrameScrollbars()) {
|
| - // ScrollView scrollbars are not the same as RenderLayer scrollbars tested by RenderLayer::hitTestOverflowControls,
|
| - // so we need to test ScrollView scrollbars separately here.
|
| - // FIXME: Consider if this test could be done unconditionally.
|
| - Scrollbar* frameScrollbar = childFrameView->scrollbarAtPoint(newHitTestLocation.roundedPoint());
|
| - if (frameScrollbar)
|
| - result.setScrollbar(frameScrollbar);
|
| - }
|
| }
|
|
|
| return RenderWidget::nodeAtPoint(request, result, locationInContainer, accumulatedOffset, action);
|
|
|