| Index: Source/core/rendering/InlineTextBox.cpp
|
| diff --git a/Source/core/rendering/InlineTextBox.cpp b/Source/core/rendering/InlineTextBox.cpp
|
| index 8b0e01da94ba281d5fc9456d2da9e37a4969fb64..16eba2c0b8369da7b6ed39f3156a76a23a71018a 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);
|
|
|
|
|