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

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: Text::reattachIfNeeded() 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
« no previous file with comments | « 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 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--)
leviw_travelin_and_unemployed 2014/11/05 19:23:15 You still want to store renderer() in a local vari
Xianzhu 2014/11/05 20:15:33 Moved first==renderer() out of the loop into the f
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 13 matching lines...) Expand all
301 301
302 return new RenderText(this, dataImpl()); 302 return new RenderText(this, dataImpl());
303 } 303 }
304 304
305 void Text::attach(const AttachContext& context) 305 void Text::attach(const AttachContext& context)
306 { 306 {
307 RenderTreeBuilderForText(this).createRendererIfNeeded(); 307 RenderTreeBuilderForText(this).createRendererIfNeeded();
308 CharacterData::attach(context); 308 CharacterData::attach(context);
309 } 309 }
310 310
311 void Text::reattachIfNeeded(const AttachContext& context)
312 {
313 RenderTreeBuilderForText treeBuilder(this);
314 bool hadRenderer = !!renderer();
leviw_travelin_and_unemployed 2014/11/05 19:23:15 You shouldn't need the !! when assigning into a bo
Xianzhu 2014/11/05 20:15:33 Done.
315 bool rendererIsNeeded = treeBuilder.rendererIsNeeded();
316 if (rendererIsNeeded == hadRenderer)
317 return;
318
319 // The following is almost the same as Node::attach() except that we create renderer only if needed.
320 // Not calling reattach() to avoid repeated calls to Text::textRendererIsNee ded().
321 AttachContext reattachContext(context);
322 reattachContext.performingReattach = true;
323
324 if (styleChangeType() < NeedsReattachStyleChange)
325 detach(reattachContext);
326 if (rendererIsNeeded)
327 treeBuilder.createRenderer();
328 CharacterData::attach(reattachContext);
329 }
330
311 void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling) 331 void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling)
312 { 332 {
313 if (RenderText* renderer = this->renderer()) { 333 if (RenderText* renderer = this->renderer()) {
314 if (change != NoChange || needsStyleRecalc()) 334 if (change != NoChange || needsStyleRecalc())
315 renderer->setStyle(document().ensureStyleResolver().styleForText(thi s)); 335 renderer->setStyle(document().ensureStyleResolver().styleForText(thi s));
316 if (needsStyleRecalc()) 336 if (needsStyleRecalc())
317 renderer->setText(dataImpl()); 337 renderer->setText(dataImpl());
318 clearNeedsStyleRecalc(); 338 clearNeedsStyleRecalc();
319 } else if (needsStyleRecalc() || needsWhitespaceRenderer()) { 339 } else if (needsStyleRecalc() || needsWhitespaceRenderer()) {
320 reattach(); 340 reattach();
321 if (this->renderer()) 341 if (this->renderer())
322 reattachWhitespaceSiblings(nextTextSibling); 342 reattachWhitespaceSiblingsIfNeeded(nextTextSibling);
323 } 343 }
324 } 344 }
325 345
326 // If a whitespace node had no renderer and goes through a recalcStyle it may 346 // 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. 347 // need to create one if the parent style now has white-space: pre.
328 bool Text::needsWhitespaceRenderer() 348 bool Text::needsWhitespaceRenderer()
329 { 349 {
330 ASSERT(!renderer()); 350 ASSERT(!renderer());
331 if (RenderStyle* style = parentRenderStyle()) 351 if (RenderStyle* style = parentRenderStyle())
332 return style->preserveNewline(); 352 return style->preserveNewline();
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
367 result.appendLiteral("; "); 387 result.appendLiteral("; ");
368 result.appendLiteral("value="); 388 result.appendLiteral("value=");
369 result.append(s); 389 result.append(s);
370 } 390 }
371 391
372 strncpy(buffer, result.toString().utf8().data(), length - 1); 392 strncpy(buffer, result.toString().utf8().data(), length - 1);
373 } 393 }
374 #endif 394 #endif
375 395
376 } // namespace blink 396 } // namespace blink
OLDNEW
« no previous file with comments | « Source/core/dom/Text.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698