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 17 matching lines...) Expand all Loading... |
28 | 28 |
29 #include "core/layout/svg/LayoutSVGText.h" | 29 #include "core/layout/svg/LayoutSVGText.h" |
30 | 30 |
31 #include "core/editing/PositionWithAffinity.h" | 31 #include "core/editing/PositionWithAffinity.h" |
32 #include "core/layout/HitTestRequest.h" | 32 #include "core/layout/HitTestRequest.h" |
33 #include "core/layout/HitTestResult.h" | 33 #include "core/layout/HitTestResult.h" |
34 #include "core/layout/LayoutAnalyzer.h" | 34 #include "core/layout/LayoutAnalyzer.h" |
35 #include "core/layout/LayoutState.h" | 35 #include "core/layout/LayoutState.h" |
36 #include "core/layout/PaintInfo.h" | 36 #include "core/layout/PaintInfo.h" |
37 #include "core/layout/PointerEventsHitRules.h" | 37 #include "core/layout/PointerEventsHitRules.h" |
38 #include "core/layout/style/ShadowList.h" | 38 #include "core/style/ShadowList.h" |
39 #include "core/layout/svg/LayoutSVGInline.h" | 39 #include "core/layout/svg/LayoutSVGInline.h" |
40 #include "core/layout/svg/LayoutSVGInlineText.h" | 40 #include "core/layout/svg/LayoutSVGInlineText.h" |
41 #include "core/layout/svg/LayoutSVGRoot.h" | 41 #include "core/layout/svg/LayoutSVGRoot.h" |
42 #include "core/layout/svg/SVGLayoutSupport.h" | 42 #include "core/layout/svg/SVGLayoutSupport.h" |
43 #include "core/layout/svg/SVGResourcesCache.h" | 43 #include "core/layout/svg/SVGResourcesCache.h" |
44 #include "core/layout/svg/line/SVGRootInlineBox.h" | 44 #include "core/layout/svg/line/SVGRootInlineBox.h" |
45 #include "core/paint/SVGTextPainter.h" | 45 #include "core/paint/SVGTextPainter.h" |
46 #include "core/svg/SVGLengthList.h" | 46 #include "core/svg/SVGLengthList.h" |
47 #include "core/svg/SVGTextElement.h" | 47 #include "core/svg/SVGTextElement.h" |
48 #include "core/svg/SVGTransformList.h" | 48 #include "core/svg/SVGTransformList.h" |
(...skipping 454 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
503 SVGResourcesCache::clientWillBeRemovedFromTree(child); | 503 SVGResourcesCache::clientWillBeRemovedFromTree(child); |
504 | 504 |
505 Vector<SVGTextLayoutAttributes*, 2> affectedAttributes; | 505 Vector<SVGTextLayoutAttributes*, 2> affectedAttributes; |
506 FontCachePurgePreventer fontCachePurgePreventer; | 506 FontCachePurgePreventer fontCachePurgePreventer; |
507 subtreeChildWillBeRemoved(child, affectedAttributes); | 507 subtreeChildWillBeRemoved(child, affectedAttributes); |
508 LayoutSVGBlock::removeChild(child); | 508 LayoutSVGBlock::removeChild(child); |
509 subtreeChildWasRemoved(affectedAttributes); | 509 subtreeChildWasRemoved(affectedAttributes); |
510 } | 510 } |
511 | 511 |
512 } | 512 } |
OLD | NEW |