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 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
297 return new RenderSVGInlineText(this, dataImpl()); | 297 return new RenderSVGInlineText(this, dataImpl()); |
298 | 298 |
299 if (style->hasTextCombine()) | 299 if (style->hasTextCombine()) |
300 return new RenderCombineText(this, dataImpl()); | 300 return new RenderCombineText(this, dataImpl()); |
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 RenderTreeBuilderForText(this).createRendererIfNeeded(); |
308 CharacterData::attach(context); | 308 CharacterData::attach(context); |
309 } | 309 } |
310 | 310 |
311 void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling) | 311 void Text::recalcTextStyle(StyleRecalcChange change, Text* nextTextSibling) |
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()); |
(...skipping 49 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 |