OLD | NEW |
---|---|
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 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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->isFloatingOrOutOfFlowPositioned() && maxSiblingsT oVisit--) |
278 first = first->nextSibling(); | 278 first = first->nextSibling(); |
279 if (!first || NodeRenderingTraversal::nextSiblingRenderer(this) == first ) | 279 if (!first || first == renderer() || NodeRenderingTraversal::nextSibling Renderer(this) == first) |
Xianzhu
2014/11/05 20:15:33
'!first' is not strictly necessary because 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) |
288 { | 288 { |
289 Node* parentOrShadowHostNode = text->parentOrShadowHostNode(); | 289 Node* parentOrShadowHostNode = text->parentOrShadowHostNode(); |
(...skipping 11 matching lines...) Expand all Loading... | |
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(); | |
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 Loading... | |
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 |
OLD | NEW |