Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Side by Side Diff: third_party/WebKit/Source/core/dom/Text.cpp

Issue 2421793002: Move layout tree reconstruction code for Text nodes into new function (Closed)
Patch Set: Addressing bugsnash@ comments Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/WebKit/Source/core/dom/Text.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org)
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) 3 * (C) 1999 Antti Koivisto (koivisto@kde.org)
4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights
5 * reserved. 5 * reserved.
6 * 6 *
7 * This library is free software; you can redistribute it and/or 7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Library General Public 8 * modify it under the terms of the GNU Library General Public
9 * License as published by the Free Software Foundation; either 9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version. 10 * version 2 of the License, or (at your option) any later version.
(...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after
390 } 390 }
391 391
392 void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling) { 392 void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling) {
393 if (LayoutTextItem layoutItem = LayoutTextItem(this->layoutObject())) { 393 if (LayoutTextItem layoutItem = LayoutTextItem(this->layoutObject())) {
394 if (change != NoChange || needsStyleRecalc()) 394 if (change != NoChange || needsStyleRecalc())
395 layoutItem.setStyle(document().ensureStyleResolver().styleForText(this)); 395 layoutItem.setStyle(document().ensureStyleResolver().styleForText(this));
396 if (needsStyleRecalc()) 396 if (needsStyleRecalc())
397 layoutItem.setText(dataImpl()); 397 layoutItem.setText(dataImpl());
398 clearNeedsStyleRecalc(); 398 clearNeedsStyleRecalc();
399 } else if (needsStyleRecalc() || needsWhitespaceLayoutObject()) { 399 } else if (needsStyleRecalc() || needsWhitespaceLayoutObject()) {
400 reattachLayoutTree(); 400 setNeedsReattachLayoutTree();
Bugs Nash 2016/10/18 23:19:14 I understand that you want to set flags correctly,
nainar 2016/10/26 05:08:55 Yup I understand. Made the change.
401 if (this->layoutObject()) 401 rebuildTextLayoutTree(nextTextSibling);
402 reattachWhitespaceSiblingsIfNeeded(nextTextSibling);
403 clearNeedsReattachLayoutTree();
404 } 402 }
405 } 403 }
406 404
405 void Text::rebuildTextLayoutTree(Text* nextTextSibling) {
Bugs Nash 2016/10/18 23:19:14 yup this is (y)
nainar 2016/10/26 05:08:55 Yeah!
406 reattachLayoutTree();
407 if (this->layoutObject())
408 reattachWhitespaceSiblingsIfNeeded(nextTextSibling);
409 clearNeedsReattachLayoutTree();
410 }
411
407 // If a whitespace node had no layoutObject and goes through a recalcStyle it 412 // If a whitespace node had no layoutObject and goes through a recalcStyle it
408 // may need to create one if the parent style now has white-space: pre. 413 // may need to create one if the parent style now has white-space: pre.
409 bool Text::needsWhitespaceLayoutObject() { 414 bool Text::needsWhitespaceLayoutObject() {
410 DCHECK(!layoutObject()); 415 DCHECK(!layoutObject());
411 if (const ComputedStyle* style = parentComputedStyle()) 416 if (const ComputedStyle* style = parentComputedStyle())
412 return style->preserveNewline(); 417 return style->preserveNewline();
413 return false; 418 return false;
414 } 419 }
415 420
416 // Passing both |textNode| and its layout object because repeated calls to 421 // Passing both |textNode| and its layout object because repeated calls to
(...skipping 29 matching lines...) Expand all
446 451
447 Text* Text::cloneWithData(const String& data) { 452 Text* Text::cloneWithData(const String& data) {
448 return create(document(), data); 453 return create(document(), data);
449 } 454 }
450 455
451 DEFINE_TRACE(Text) { 456 DEFINE_TRACE(Text) {
452 CharacterData::trace(visitor); 457 CharacterData::trace(visitor);
453 } 458 }
454 459
455 } // namespace blink 460 } // namespace blink
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Text.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698