| Index: Source/core/rendering/RenderBlock.cpp
|
| diff --git a/Source/core/rendering/RenderBlock.cpp b/Source/core/rendering/RenderBlock.cpp
|
| index 273ebeb3a9aa795ea14b4a94db5de860336095ba..530b163e626094b69244e1f5f93bcd63f3f5dbb4 100644
|
| --- a/Source/core/rendering/RenderBlock.cpp
|
| +++ b/Source/core/rendering/RenderBlock.cpp
|
| @@ -1751,7 +1751,7 @@ void RenderBlock::computeOverflow(LayoutUnit oldClientAfterEdge, bool recomputeF
|
| LayoutUnit textIndent = textIndentOffset();
|
| if (textIndent < 0) {
|
| LayoutRect clientRect(noOverflowRect());
|
| - LayoutRect rectToApply = LayoutRect(clientRect.x() + min<LayoutUnit>(0, textIndent), clientRect.y(), clientRect.width() - min<LayoutUnit>(0, textIndent), clientRect.height());
|
| + LayoutRect rectToApply = LayoutRect(clientRect.x() + textIndent, clientRect.y(), clientRect.width() - textIndent, clientRect.height());
|
| addContentsVisualOverflow(rectToApply);
|
| }
|
|
|
|
|