| Index: sky/engine/core/rendering/RenderInline.cpp
|
| diff --git a/sky/engine/core/rendering/RenderInline.cpp b/sky/engine/core/rendering/RenderInline.cpp
|
| index ae1133311c78cb28a06654e4e90aa976b3057411..1b376f8aabf7c4fa5a9cb7aff62d43bfb23a2b32 100644
|
| --- a/sky/engine/core/rendering/RenderInline.cpp
|
| +++ b/sky/engine/core/rendering/RenderInline.cpp
|
| @@ -113,7 +113,7 @@ void RenderInline::styleDidChange(StyleDifference diff, const RenderStyle* oldSt
|
| bool alwaysCreateLineBoxesNew = hasSelfPaintingLayer() || hasBoxDecorationBackground() || newStyle->hasPadding() || newStyle->hasMargin() || newStyle->hasOutline();
|
| if (oldStyle && alwaysCreateLineBoxesNew) {
|
| dirtyLineBoxes(false);
|
| - setNeedsLayoutAndFullPaintInvalidation();
|
| + setNeedsLayout();
|
| }
|
| setAlwaysCreateLineBoxes(alwaysCreateLineBoxesNew);
|
| }
|
| @@ -178,7 +178,7 @@ LayoutRect RenderInline::localCaretRect(InlineBox* inlineBox, int, LayoutUnit* e
|
| void RenderInline::addChild(RenderObject* newChild, RenderObject* beforeChild)
|
| {
|
| RenderBoxModelObject::addChild(newChild, beforeChild);
|
| - newChild->setNeedsLayoutAndPrefWidthsRecalcAndFullPaintInvalidation();
|
| + newChild->setNeedsLayoutAndPrefWidthsRecalc();
|
| }
|
|
|
| void RenderInline::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
|
|