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 256 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
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 Loading... | |
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 Loading... | |
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 |
OLD | NEW |