| Index: Source/core/paint/TextPainter.cpp
|
| diff --git a/Source/core/paint/TextPainter.cpp b/Source/core/paint/TextPainter.cpp
|
| index c489e61b13872ae54d72d029a9952c31ac373aa6..405b374e57a7d4ca8b75e5c41678cb8e76722488 100644
|
| --- a/Source/core/paint/TextPainter.cpp
|
| +++ b/Source/core/paint/TextPainter.cpp
|
| @@ -55,14 +55,7 @@
|
| {
|
| GraphicsContextStateSaver stateSaver(*m_graphicsContext, false);
|
| updateGraphicsContext(textStyle, stateSaver);
|
| - if (m_combinedText && m_combinedText->isTransformNeeded()) {
|
| - m_graphicsContext->save();
|
| - m_combinedText->transform(*m_graphicsContext, m_textBounds);
|
| - paintInternal<PaintText>(startOffset, endOffset, length, cachedTextBlob);
|
| - m_graphicsContext->restore();
|
| - } else {
|
| - paintInternal<PaintText>(startOffset, endOffset, length, cachedTextBlob);
|
| - }
|
| + paintInternal<PaintText>(startOffset, endOffset, length, cachedTextBlob);
|
|
|
| if (!m_emphasisMark.isEmpty()) {
|
| if (textStyle.emphasisMarkColor != textStyle.fillColor)
|
|
|