| Index: sky/engine/core/rendering/RenderBoxModelObject.cpp
|
| diff --git a/sky/engine/core/rendering/RenderBoxModelObject.cpp b/sky/engine/core/rendering/RenderBoxModelObject.cpp
|
| index 5f40547bd108c37d63453e68aac07d1ce099bb91..83b78a6216cfc0219f43289c9154e01a83c34a44 100644
|
| --- a/sky/engine/core/rendering/RenderBoxModelObject.cpp
|
| +++ b/sky/engine/core/rendering/RenderBoxModelObject.cpp
|
| @@ -2453,18 +2453,6 @@ void RenderBoxModelObject::setContinuation(RenderBoxModelObject* continuation)
|
| }
|
| }
|
|
|
| -void RenderBoxModelObject::computeLayerHitTestRects(LayerHitTestRects& rects) const
|
| -{
|
| - RenderLayerModelObject::computeLayerHitTestRects(rects);
|
| -
|
| - // If there is a continuation then we need to consult it here, since this is
|
| - // the root of the tree walk and it wouldn't otherwise get picked up.
|
| - // Continuations should always be siblings in the tree, so any others should
|
| - // get picked up already by the tree walk.
|
| - if (continuation())
|
| - continuation()->computeLayerHitTestRects(rects);
|
| -}
|
| -
|
| LayoutRect RenderBoxModelObject::localCaretRectForEmptyElement(LayoutUnit width, LayoutUnit textIndentOffset)
|
| {
|
| ASSERT(!slowFirstChild());
|
|
|