OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2006 Apple Computer, Inc. | 2 * Copyright (C) 2006 Apple Computer, Inc. |
3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 3 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010. 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
71 } | 71 } |
72 | 72 |
73 void RenderSVGBlock::willBeDestroyed() | 73 void RenderSVGBlock::willBeDestroyed() |
74 { | 74 { |
75 SVGResourcesCache::clientDestroyed(this); | 75 SVGResourcesCache::clientDestroyed(this); |
76 RenderBlockFlow::willBeDestroyed(); | 76 RenderBlockFlow::willBeDestroyed(); |
77 } | 77 } |
78 | 78 |
79 void RenderSVGBlock::styleDidChange(StyleDifference diff, const RenderStyle* old
Style) | 79 void RenderSVGBlock::styleDidChange(StyleDifference diff, const RenderStyle* old
Style) |
80 { | 80 { |
81 if (diff.needsFullLayout()) | 81 if (diff == StyleDifferenceLayout) |
82 setNeedsBoundariesUpdate(); | 82 setNeedsBoundariesUpdate(); |
83 | 83 |
84 RenderBlock::styleDidChange(diff, oldStyle); | 84 RenderBlock::styleDidChange(diff, oldStyle); |
85 SVGResourcesCache::clientStyleChanged(this, diff, style()); | 85 SVGResourcesCache::clientStyleChanged(this, diff, style()); |
86 } | 86 } |
87 | 87 |
88 void RenderSVGBlock::mapLocalToContainer(const RenderLayerModelObject* repaintCo
ntainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) co
nst | 88 void RenderSVGBlock::mapLocalToContainer(const RenderLayerModelObject* repaintCo
ntainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) co
nst |
89 { | 89 { |
90 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState
, wasFixed); | 90 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState
, wasFixed); |
91 } | 91 } |
(...skipping 13 matching lines...) Expand all Loading... |
105 SVGRenderSupport::computeFloatRectForRepaint(this, repaintContainer, repaint
Rect, fixed); | 105 SVGRenderSupport::computeFloatRectForRepaint(this, repaintContainer, repaint
Rect, fixed); |
106 } | 106 } |
107 | 107 |
108 bool RenderSVGBlock::nodeAtPoint(const HitTestRequest&, HitTestResult&, const Hi
tTestLocation&, const LayoutPoint&, HitTestAction) | 108 bool RenderSVGBlock::nodeAtPoint(const HitTestRequest&, HitTestResult&, const Hi
tTestLocation&, const LayoutPoint&, HitTestAction) |
109 { | 109 { |
110 ASSERT_NOT_REACHED(); | 110 ASSERT_NOT_REACHED(); |
111 return false; | 111 return false; |
112 } | 112 } |
113 | 113 |
114 } | 114 } |
OLD | NEW |