| Index: Source/core/rendering/line/LineBreaker.cpp
|
| diff --git a/Source/core/rendering/line/LineBreaker.cpp b/Source/core/rendering/line/LineBreaker.cpp
|
| index 5b4f2091712660af64ebbd4982a25a13952dc8a5..4f74ee5447f824e106b8ca9933aa4845fcbd52b6 100644
|
| --- a/Source/core/rendering/line/LineBreaker.cpp
|
| +++ b/Source/core/rendering/line/LineBreaker.cpp
|
| @@ -43,6 +43,10 @@
|
| }
|
| } else if (object->isFloating()) {
|
| m_block->positionNewFloatOnLine(m_block->insertFloatingObject(*toRenderBox(object)), lastFloatFromPreviousLine, lineInfo, width);
|
| + } else if (object->isText() && object->style()->hasTextCombine() && object->isCombineText() && !toRenderCombineText(object)->isCombined()) {
|
| + toRenderCombineText(object)->combineText();
|
| + if (toRenderCombineText(object)->isCombined())
|
| + continue;
|
| }
|
| resolver.position().increment(&resolver);
|
| }
|
|
|