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) |
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 RenderTreeBuilder(this, context.resolvedStyle).createRendererForTextIfNeeded
(); | 307 RenderTreeBuilder(this, context.resolvedStyle).createRendererForTextIfNeeded
(); |
308 CharacterData::attach(context); | 308 CharacterData::attach(context); |
309 } | 309 } |
310 | 310 |
| 311 void Text::reattachIfNeeded(const AttachContext& context) |
| 312 { |
| 313 bool rendererIsNeeded = false; |
| 314 ContainerNode* renderingParent = NodeRenderingTraversal::parent(this); |
| 315 if (renderingParent) { |
| 316 if (RenderObject* parentRenderer = renderingParent->renderer()) { |
| 317 if (textRendererIsNeeded(*parentRenderer->style(), *parentRenderer)) |
| 318 rendererIsNeeded = true; |
| 319 } |
| 320 } |
| 321 |
| 322 if (rendererIsNeeded == !!renderer()) |
| 323 return; |
| 324 |
| 325 // The following is almost the same as Node::reattach() except that we creat
e renderer only if needed. |
| 326 // Not calling reattach() to avoid repeated calls to Text::textRendererIsNee
ded(). |
| 327 AttachContext reattachContext(context); |
| 328 reattachContext.performingReattach = true; |
| 329 |
| 330 if (styleChangeType() < NeedsReattachStyleChange) |
| 331 detach(reattachContext); |
| 332 if (rendererIsNeeded) |
| 333 RenderTreeBuilderForText(this, renderingParent->renderer()).createRender
er(); |
| 334 CharacterData::attach(reattachContext); |
| 335 } |
| 336 |
311 void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling) | 337 void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling) |
312 { | 338 { |
313 if (RenderText* renderer = this->renderer()) { | 339 if (RenderText* renderer = this->renderer()) { |
314 if (change != NoChange || needsStyleRecalc()) | 340 if (change != NoChange || needsStyleRecalc()) |
315 renderer->setStyle(document().ensureStyleResolver().styleForText(thi
s)); | 341 renderer->setStyle(document().ensureStyleResolver().styleForText(thi
s)); |
316 if (needsStyleRecalc()) | 342 if (needsStyleRecalc()) |
317 renderer->setText(dataImpl()); | 343 renderer->setText(dataImpl()); |
318 clearNeedsStyleRecalc(); | 344 clearNeedsStyleRecalc(); |
319 } else if (needsStyleRecalc() || needsWhitespaceRenderer()) { | 345 } else if (needsStyleRecalc() || needsWhitespaceRenderer()) { |
320 reattach(); | 346 reattach(); |
321 if (this->renderer()) | 347 if (this->renderer()) |
322 reattachWhitespaceSiblings(nextTextSibling); | 348 reattachWhitespaceSiblingsIfNeeded(nextTextSibling); |
323 } | 349 } |
324 } | 350 } |
325 | 351 |
326 // If a whitespace node had no renderer and goes through a recalcStyle it may | 352 // 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. | 353 // need to create one if the parent style now has white-space: pre. |
328 bool Text::needsWhitespaceRenderer() | 354 bool Text::needsWhitespaceRenderer() |
329 { | 355 { |
330 ASSERT(!renderer()); | 356 ASSERT(!renderer()); |
331 if (RenderStyle* style = parentRenderStyle()) | 357 if (RenderStyle* style = parentRenderStyle()) |
332 return style->preserveNewline(); | 358 return style->preserveNewline(); |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 result.appendLiteral("; "); | 393 result.appendLiteral("; "); |
368 result.appendLiteral("value="); | 394 result.appendLiteral("value="); |
369 result.append(s); | 395 result.append(s); |
370 } | 396 } |
371 | 397 |
372 strncpy(buffer, result.toString().utf8().data(), length - 1); | 398 strncpy(buffer, result.toString().utf8().data(), length - 1); |
373 } | 399 } |
374 #endif | 400 #endif |
375 | 401 |
376 } // namespace blink | 402 } // namespace blink |
OLD | NEW |