| Index: Source/core/rendering/InlineTextBox.cpp
|
| diff --git a/Source/core/rendering/InlineTextBox.cpp b/Source/core/rendering/InlineTextBox.cpp
|
| index add1b0e37501bccf354987e2c3ee92e500f4bc11..24d0878a1652027532b042841c84e3aafa9db792 100644
|
| --- a/Source/core/rendering/InlineTextBox.cpp
|
| +++ b/Source/core/rendering/InlineTextBox.cpp
|
| @@ -485,8 +485,8 @@ void InlineTextBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset,
|
| LayoutUnit logicalStart = logicalLeftSide + (isHorizontal() ? paintOffset.x() : paintOffset.y());
|
| LayoutUnit logicalExtent = logicalRightSide - logicalLeftSide;
|
|
|
| - LayoutUnit paintEnd = isHorizontal() ? paintInfo.rect.maxX() : paintInfo.rect.maxY();
|
| - LayoutUnit paintStart = isHorizontal() ? paintInfo.rect.x() : paintInfo.rect.y();
|
| + LayoutUnit paintEnd = isHorizontal() ? paintInfo.rect().maxX() : paintInfo.rect().maxY();
|
| + LayoutUnit paintStart = isHorizontal() ? paintInfo.rect().x() : paintInfo.rect().y();
|
|
|
| LayoutPoint adjustedPaintOffset = roundedIntPoint(paintOffset);
|
|
|
|
|