| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
| 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> | 3 * Copyright (C) 2006 Alexander Kellett <lypanov@kde.org> |
| 4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> | 4 * Copyright (C) 2006 Oliver Hunt <ojh16@student.canterbury.ac.nz> |
| 5 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 5 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 6 * Copyright (C) 2008 Rob Buis <buis@kde.org> | 6 * Copyright (C) 2008 Rob Buis <buis@kde.org> |
| 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 7 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 8 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. | 8 * Copyright (C) Research In Motion Limited 2010-2012. All rights reserved. |
| 9 * Copyright (C) 2012 Google Inc. | 9 * Copyright (C) 2012 Google Inc. |
| 10 * | 10 * |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 #include "core/editing/PositionWithAffinity.h" | 31 #include "core/editing/PositionWithAffinity.h" |
| 32 #include "core/paint/SVGTextPainter.h" | 32 #include "core/paint/SVGTextPainter.h" |
| 33 #include "core/rendering/HitTestRequest.h" | 33 #include "core/rendering/HitTestRequest.h" |
| 34 #include "core/rendering/HitTestResult.h" | 34 #include "core/rendering/HitTestResult.h" |
| 35 #include "core/rendering/PaintInfo.h" | 35 #include "core/rendering/PaintInfo.h" |
| 36 #include "core/rendering/PointerEventsHitRules.h" | 36 #include "core/rendering/PointerEventsHitRules.h" |
| 37 #include "core/rendering/style/ShadowList.h" | 37 #include "core/rendering/style/ShadowList.h" |
| 38 #include "core/rendering/svg/RenderSVGInline.h" | 38 #include "core/rendering/svg/RenderSVGInline.h" |
| 39 #include "core/rendering/svg/RenderSVGInlineText.h" | 39 #include "core/rendering/svg/RenderSVGInlineText.h" |
| 40 #include "core/rendering/svg/RenderSVGResource.h" | |
| 41 #include "core/rendering/svg/RenderSVGRoot.h" | 40 #include "core/rendering/svg/RenderSVGRoot.h" |
| 42 #include "core/rendering/svg/SVGRenderSupport.h" | 41 #include "core/rendering/svg/SVGRenderSupport.h" |
| 43 #include "core/rendering/svg/SVGResourcesCache.h" | 42 #include "core/rendering/svg/SVGResourcesCache.h" |
| 44 #include "core/rendering/svg/SVGRootInlineBox.h" | 43 #include "core/rendering/svg/SVGRootInlineBox.h" |
| 45 #include "core/rendering/svg/SVGTextRunRenderingContext.h" | |
| 46 #include "core/svg/SVGLengthList.h" | 44 #include "core/svg/SVGLengthList.h" |
| 47 #include "core/svg/SVGTextElement.h" | 45 #include "core/svg/SVGTextElement.h" |
| 48 #include "core/svg/SVGTransformList.h" | 46 #include "core/svg/SVGTransformList.h" |
| 49 #include "core/svg/SVGURIReference.h" | 47 #include "core/svg/SVGURIReference.h" |
| 50 #include "platform/FloatConversion.h" | 48 #include "platform/FloatConversion.h" |
| 51 #include "platform/fonts/FontCache.h" | 49 #include "platform/fonts/FontCache.h" |
| 52 #include "platform/fonts/SimpleFontData.h" | 50 #include "platform/fonts/SimpleFontData.h" |
| 53 #include "platform/geometry/FloatQuad.h" | 51 #include "platform/geometry/FloatQuad.h" |
| 54 #include "platform/geometry/TransformState.h" | 52 #include "platform/geometry/TransformState.h" |
| 55 | 53 |
| (...skipping 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 509 SVGResourcesCache::clientWillBeRemovedFromTree(child); | 507 SVGResourcesCache::clientWillBeRemovedFromTree(child); |
| 510 | 508 |
| 511 Vector<SVGTextLayoutAttributes*, 2> affectedAttributes; | 509 Vector<SVGTextLayoutAttributes*, 2> affectedAttributes; |
| 512 FontCachePurgePreventer fontCachePurgePreventer; | 510 FontCachePurgePreventer fontCachePurgePreventer; |
| 513 subtreeChildWillBeRemoved(child, affectedAttributes); | 511 subtreeChildWillBeRemoved(child, affectedAttributes); |
| 514 RenderSVGBlock::removeChild(child); | 512 RenderSVGBlock::removeChild(child); |
| 515 subtreeChildWasRemoved(affectedAttributes); | 513 subtreeChildWasRemoved(affectedAttributes); |
| 516 } | 514 } |
| 517 | 515 |
| 518 } | 516 } |
| OLD | NEW |