| Index: third_party/WebKit/Source/core/dom/Text.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Text.cpp b/third_party/WebKit/Source/core/dom/Text.cpp
|
| index 7ab8e0701db4a629bac56af380740335743a2f07..05c92685e2afdf82ae68fcd03ad6ad3d583f8201 100644
|
| --- a/third_party/WebKit/Source/core/dom/Text.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Text.cpp
|
| @@ -393,14 +393,23 @@ void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling) {
|
| layoutItem.setText(dataImpl());
|
| clearNeedsStyleRecalc();
|
| } else if (needsStyleRecalc() || needsWhitespaceLayoutObject()) {
|
| - rebuildTextLayoutTree(nextTextSibling);
|
| + StyleReattachData styleReattachData;
|
| + styleReattachData.nextTextSibling = nextTextSibling;
|
| + document().addStyleReattachData(*this, styleReattachData);
|
| + setNeedsReattachLayoutTree();
|
| }
|
| }
|
|
|
| -void Text::rebuildTextLayoutTree(Text* nextTextSibling) {
|
| +void Text::rebuildTextLayoutTree() {
|
| + DCHECK(!childNeedsStyleRecalc());
|
| + DCHECK(needsReattachLayoutTree());
|
| + DCHECK(parentNode());
|
| +
|
| reattachLayoutTree();
|
| - if (layoutObject())
|
| - reattachWhitespaceSiblingsIfNeeded(nextTextSibling);
|
| + if (layoutObject()) {
|
| + reattachWhitespaceSiblingsIfNeeded(
|
| + document().getStyleReattachData(*this).nextTextSibling);
|
| + }
|
| clearNeedsReattachLayoutTree();
|
| }
|
|
|
|
|