| Index: sky/engine/core/rendering/InlineTextBox.cpp
|
| diff --git a/sky/engine/core/rendering/InlineTextBox.cpp b/sky/engine/core/rendering/InlineTextBox.cpp
|
| index 49e359f8c5a3419b8606f016b2596a72eda16251..9cd46d3222c2214a0816b9078cc6f5d8cd5e865d 100644
|
| --- a/sky/engine/core/rendering/InlineTextBox.cpp
|
| +++ b/sky/engine/core/rendering/InlineTextBox.cpp
|
| @@ -480,8 +480,7 @@ void paintTextWithEmphasisMark(
|
|
|
| void InlineTextBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, LayoutUnit /*lineTop*/, LayoutUnit /*lineBottom*/)
|
| {
|
| - if (isLineBreak() || !paintInfo.shouldPaintWithinRoot(&renderer())
|
| - || m_truncation == cFullTruncation || !m_len)
|
| + if (isLineBreak() || m_truncation == cFullTruncation || !m_len)
|
| return;
|
|
|
| LayoutRect logicalVisualOverflow = logicalOverflowRect();
|
|
|