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

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

Issue 684633006: Reattach whitespace siblings only when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« Source/core/dom/Node.cpp ('K') | « Source/core/dom/Node.cpp ('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 reserved. 4 * Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
5 * 5 *
6 * This library is free software; you can redistribute it and/or 6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Library General Public 7 * modify it under the terms of the GNU Library General Public
8 * License as published by the Free Software Foundation; either 8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version. 9 * version 2 of the License, or (at your option) any later version.
10 * 10 *
(...skipping 256 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 return false; 267 return false;
268 } else { 268 } else {
269 if (parent.isRenderBlock() && !parent.childrenInline() && (!prev || !pre v->isInline())) 269 if (parent.isRenderBlock() && !parent.childrenInline() && (!prev || !pre v->isInline()))
270 return false; 270 return false;
271 271
272 // Avoiding creation of a Renderer for the text node is a non-essential memory optimization. 272 // Avoiding creation of a Renderer for the text node is a non-essential memory optimization.
273 // So to avoid blowing up on very wide DOMs, we limit the number of sibl ings to visit. 273 // So to avoid blowing up on very wide DOMs, we limit the number of sibl ings to visit.
274 unsigned maxSiblingsToVisit = 50; 274 unsigned maxSiblingsToVisit = 50;
275 275
276 RenderObject* first = parent.slowFirstChild(); 276 RenderObject* first = parent.slowFirstChild();
277 while (first && first->isFloatingOrOutOfFlowPositioned() && maxSiblingsT oVisit--) 277 while (first && (first == renderer() || first->isFloatingOrOutOfFlowPosi tioned()) && maxSiblingsToVisit--)
esprehn 2014/11/04 22:03:55 renderer() has a branch inside it, you shouldn't c
278 first = first->nextSibling(); 278 first = first->nextSibling();
279 if (!first || NodeRenderingTraversal::nextSiblingRenderer(this) == first ) 279 if (!first || NodeRenderingTraversal::nextSiblingRenderer(this) == first )
280 // Whitespace at the start of a block just goes away. Don't even 280 // Whitespace at the start of a block just goes away. Don't even
281 // make a render object for this text. 281 // make a render object for this text.
282 return false; 282 return false;
283 } 283 }
284 return true; 284 return true;
285 } 285 }
286 286
287 static bool isSVGText(Text* text) 287 static bool isSVGText(Text* text)
(...skipping 24 matching lines...) Expand all
312 { 312 {
313 if (RenderText* renderer = this->renderer()) { 313 if (RenderText* renderer = this->renderer()) {
314 if (change != NoChange || needsStyleRecalc()) 314 if (change != NoChange || needsStyleRecalc())
315 renderer->setStyle(document().ensureStyleResolver().styleForText(thi s)); 315 renderer->setStyle(document().ensureStyleResolver().styleForText(thi s));
316 if (needsStyleRecalc()) 316 if (needsStyleRecalc())
317 renderer->setText(dataImpl()); 317 renderer->setText(dataImpl());
318 clearNeedsStyleRecalc(); 318 clearNeedsStyleRecalc();
319 } else if (needsStyleRecalc() || needsWhitespaceRenderer()) { 319 } else if (needsStyleRecalc() || needsWhitespaceRenderer()) {
320 reattach(); 320 reattach();
321 if (this->renderer()) 321 if (this->renderer())
322 reattachWhitespaceSiblings(nextTextSibling); 322 reattachWhitespaceSiblingsIfNeeded(nextTextSibling);
323 } 323 }
324 } 324 }
325 325
326 // If a whitespace node had no renderer and goes through a recalcStyle it may 326 // If a whitespace node had no renderer and goes through a recalcStyle it may
327 // need to create one if the parent style now has white-space: pre. 327 // need to create one if the parent style now has white-space: pre.
328 bool Text::needsWhitespaceRenderer() 328 bool Text::needsWhitespaceRenderer()
329 { 329 {
330 ASSERT(!renderer()); 330 ASSERT(!renderer());
331 if (RenderStyle* style = parentRenderStyle()) 331 if (RenderStyle* style = parentRenderStyle())
332 return style->preserveNewline(); 332 return style->preserveNewline();
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 result.appendLiteral("; "); 367 result.appendLiteral("; ");
368 result.appendLiteral("value="); 368 result.appendLiteral("value=");
369 result.append(s); 369 result.append(s);
370 } 370 }
371 371
372 strncpy(buffer, result.toString().utf8().data(), length - 1); 372 strncpy(buffer, result.toString().utf8().data(), length - 1);
373 } 373 }
374 #endif 374 #endif
375 375
376 } // namespace blink 376 } // namespace blink
OLDNEW
« Source/core/dom/Node.cpp ('K') | « Source/core/dom/Node.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698