OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
3 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
4 * Copyright (C) 2008 Apple Inc. All rights reserved. | 4 * Copyright (C) 2008 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 return InsertionDone; | 324 return InsertionDone; |
325 } | 325 } |
326 | 326 |
327 void SVGFontFaceElement::removedFrom(ContainerNode* rootParent) | 327 void SVGFontFaceElement::removedFrom(ContainerNode* rootParent) |
328 { | 328 { |
329 SVGElement::removedFrom(rootParent); | 329 SVGElement::removedFrom(rootParent); |
330 | 330 |
331 if (rootParent->inDocument()) { | 331 if (rootParent->inDocument()) { |
332 m_fontElement = 0; | 332 m_fontElement = 0; |
333 document().accessSVGExtensions().unregisterSVGFontFaceElement(this); | 333 document().accessSVGExtensions().unregisterSVGFontFaceElement(this); |
| 334 |
334 // FIXME: HTMLTemplateElement's document or imported document can be ac
tive? | 335 // FIXME: HTMLTemplateElement's document or imported document can be ac
tive? |
335 // If so, we also need to check whether fontSelector() is nullptr or not
. | 336 // If so, we also need to check whether fontSelector() is nullptr or not
. |
336 // Otherwise, we will use just document().isActive() here. | 337 // Otherwise, we will use just document().isActive() here. |
337 if (document().isActive() && document().styleEngine()->fontSelector()) | 338 if (document().isActive() && document().styleEngine()->fontSelector()) { |
338 document().styleEngine()->fontSelector()->fontFaceCache()->remove(m_
fontFaceRule.get()); | 339 document().styleEngine()->fontSelector()->fontFaceCache()->remove(m_
fontFaceRule.get()); |
| 340 document().accessSVGExtensions().registerPendingSVGFontFaceElementsF
orRemoval(this); |
| 341 } |
339 m_fontFaceRule->mutableProperties().clear(); | 342 m_fontFaceRule->mutableProperties().clear(); |
340 | |
341 document().styleResolverChanged(RecalcStyleDeferred); | 343 document().styleResolverChanged(RecalcStyleDeferred); |
342 } else | 344 } else |
343 ASSERT(!m_fontElement); | 345 ASSERT(!m_fontElement); |
344 } | 346 } |
345 | 347 |
346 void SVGFontFaceElement::childrenChanged(bool changedByParser, Node* beforeChang
e, Node* afterChange, int childCountDelta) | 348 void SVGFontFaceElement::childrenChanged(bool changedByParser, Node* beforeChang
e, Node* afterChange, int childCountDelta) |
347 { | 349 { |
348 SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, chil
dCountDelta); | 350 SVGElement::childrenChanged(changedByParser, beforeChange, afterChange, chil
dCountDelta); |
349 rebuildFontFace(); | 351 rebuildFontFace(); |
350 } | 352 } |
351 | 353 |
352 } // namespace WebCore | 354 } // namespace WebCore |
353 | 355 |
354 #endif // ENABLE(SVG_FONTS) | 356 #endif // ENABLE(SVG_FONTS) |
OLD | NEW |