OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> |
4 * | 4 * |
5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
9 * | 9 * |
10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 bool hasEmptyViewBox() const { return viewBoxIsValid() && viewBoxCurrentValu
e().isEmpty(); } | 133 bool hasEmptyViewBox() const { return viewBoxIsValid() && viewBoxCurrentValu
e().isEmpty(); } |
134 | 134 |
135 private: | 135 private: |
136 SVGSVGElement(const QualifiedName&, Document&); | 136 SVGSVGElement(const QualifiedName&, Document&); |
137 virtual ~SVGSVGElement(); | 137 virtual ~SVGSVGElement(); |
138 | 138 |
139 virtual bool isSVGSVGElement() const OVERRIDE { return true; } | 139 virtual bool isSVGSVGElement() const OVERRIDE { return true; } |
140 | 140 |
141 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 141 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
142 | 142 |
143 virtual bool rendererIsNeeded(const NodeRenderingContext&) OVERRIDE; | 143 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE; |
144 virtual RenderObject* createRenderer(RenderStyle*); | 144 virtual RenderObject* createRenderer(RenderStyle*); |
145 | 145 |
146 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 146 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
147 virtual void removedFrom(ContainerNode*) OVERRIDE; | 147 virtual void removedFrom(ContainerNode*) OVERRIDE; |
148 | 148 |
149 virtual void svgAttributeChanged(const QualifiedName&); | 149 virtual void svgAttributeChanged(const QualifiedName&); |
150 | 150 |
151 virtual bool selfHasRelativeLengths() const; | 151 virtual bool selfHasRelativeLengths() const; |
152 | 152 |
153 void inheritViewAttributes(SVGViewElement*); | 153 void inheritViewAttributes(SVGViewElement*); |
(...skipping 19 matching lines...) Expand all Loading... |
173 | 173 |
174 bool m_useCurrentView; | 174 bool m_useCurrentView; |
175 SVGZoomAndPanType m_zoomAndPan; | 175 SVGZoomAndPanType m_zoomAndPan; |
176 RefPtr<SMILTimeContainer> m_timeContainer; | 176 RefPtr<SMILTimeContainer> m_timeContainer; |
177 SVGPoint m_translation; | 177 SVGPoint m_translation; |
178 RefPtr<SVGViewSpec> m_viewSpec; | 178 RefPtr<SVGViewSpec> m_viewSpec; |
179 }; | 179 }; |
180 | 180 |
181 inline SVGSVGElement* toSVGSVGElement(Node* node) | 181 inline SVGSVGElement* toSVGSVGElement(Node* node) |
182 { | 182 { |
183 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isSVGElement()); | |
184 ASSERT_WITH_SECURITY_IMPLICATION(!node || toSVGElement(node)->isSVGSVGElemen
t()); | 183 ASSERT_WITH_SECURITY_IMPLICATION(!node || toSVGElement(node)->isSVGSVGElemen
t()); |
185 return static_cast<SVGSVGElement*>(node); | 184 return static_cast<SVGSVGElement*>(node); |
186 } | 185 } |
187 | 186 |
| 187 inline const SVGSVGElement* toSVGSVGElement(const Node* node) |
| 188 { |
| 189 ASSERT_WITH_SECURITY_IMPLICATION(!node || toSVGElement(node)->isSVGSVGElemen
t()); |
| 190 return static_cast<const SVGSVGElement*>(node); |
| 191 } |
| 192 |
188 } // namespace WebCore | 193 } // namespace WebCore |
189 | 194 |
190 #endif | 195 #endif |
OLD | NEW |