| Index: sky/engine/core/rendering/RenderBlockLineLayout.cpp
|
| diff --git a/sky/engine/core/rendering/RenderBlockLineLayout.cpp b/sky/engine/core/rendering/RenderBlockLineLayout.cpp
|
| index 3a19e7bedea8376d1477e8faf824fe98fe65aa91..3ce73cb00390ae60f8c140067ebf61645e8e2029 100644
|
| --- a/sky/engine/core/rendering/RenderBlockLineLayout.cpp
|
| +++ b/sky/engine/core/rendering/RenderBlockLineLayout.cpp
|
| @@ -1487,20 +1487,6 @@ bool RenderBlockFlow::generatesLineBoxesForInlineChild(RenderObject* inlineObj)
|
| return !it.atEnd();
|
| }
|
|
|
| -
|
| -void RenderBlockFlow::addOverflowFromInlineChildren()
|
| -{
|
| - LayoutUnit endPadding = hasOverflowClip() ? paddingEnd() : LayoutUnit();
|
| - // FIXME: Need to find another way to do this, since scrollbars could show when we don't want them to.
|
| - if (hasOverflowClip() && !endPadding && node() && node()->isRootEditableElement() && style()->isLeftToRightDirection())
|
| - endPadding = 1;
|
| - for (RootInlineBox* curr = firstRootBox(); curr; curr = curr->nextRootBox()) {
|
| - addLayoutOverflow(curr->paddedLayoutOverflowRect(endPadding));
|
| - LayoutRect visualOverflow = curr->visualOverflowRect(curr->lineTop(), curr->lineBottom());
|
| - addContentsVisualOverflow(visualOverflow);
|
| - }
|
| -}
|
| -
|
| void RenderBlockFlow::deleteEllipsisLineBoxes()
|
| {
|
| ETextAlign textAlign = style()->textAlign();
|
|
|