| Index: sky/engine/core/rendering/InlineTextBox.cpp
|
| diff --git a/sky/engine/core/rendering/InlineTextBox.cpp b/sky/engine/core/rendering/InlineTextBox.cpp
|
| index a02623567ccfa7b15bbb1a532de6bd6a842f24ba..49e359f8c5a3419b8606f016b2596a72eda16251 100644
|
| --- a/sky/engine/core/rendering/InlineTextBox.cpp
|
| +++ b/sky/engine/core/rendering/InlineTextBox.cpp
|
| @@ -481,11 +481,9 @@ void paintTextWithEmphasisMark(
|
| void InlineTextBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, LayoutUnit /*lineTop*/, LayoutUnit /*lineBottom*/)
|
| {
|
| if (isLineBreak() || !paintInfo.shouldPaintWithinRoot(&renderer())
|
| - || m_truncation == cFullTruncation || paintInfo.phase == PaintPhaseOutline || !m_len)
|
| + || m_truncation == cFullTruncation || !m_len)
|
| return;
|
|
|
| - ASSERT(paintInfo.phase != PaintPhaseSelfOutline && paintInfo.phase != PaintPhaseChildOutlines);
|
| -
|
| LayoutRect logicalVisualOverflow = logicalOverflowRect();
|
| LayoutUnit logicalStart = logicalVisualOverflow.x() + paintOffset.x();
|
| LayoutUnit logicalExtent = logicalVisualOverflow.width();
|
|
|