OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 reportAttributeParsingError(parseError, name, value); | 78 reportAttributeParsingError(parseError, name, value); |
79 } | 79 } |
80 | 80 |
81 void SVGScriptElement::svgAttributeChanged(const QualifiedName& attrName) | 81 void SVGScriptElement::svgAttributeChanged(const QualifiedName& attrName) |
82 { | 82 { |
83 if (!isSupportedAttribute(attrName)) { | 83 if (!isSupportedAttribute(attrName)) { |
84 SVGElement::svgAttributeChanged(attrName); | 84 SVGElement::svgAttributeChanged(attrName); |
85 return; | 85 return; |
86 } | 86 } |
87 | 87 |
88 SVGElementInstance::InvalidationGuard invalidationGuard(this); | 88 SVGElement::InvalidationGuard invalidationGuard(this); |
89 | 89 |
90 if (attrName == SVGNames::typeAttr || attrName == HTMLNames::onerrorAttr) | 90 if (attrName == SVGNames::typeAttr || attrName == HTMLNames::onerrorAttr) |
91 return; | 91 return; |
92 | 92 |
93 if (SVGURIReference::isKnownAttribute(attrName)) { | 93 if (SVGURIReference::isKnownAttribute(attrName)) { |
94 m_loader->handleSourceAttribute(hrefString()); | 94 m_loader->handleSourceAttribute(hrefString()); |
95 return; | 95 return; |
96 } | 96 } |
97 | 97 |
98 ASSERT_NOT_REACHED(); | 98 ASSERT_NOT_REACHED(); |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 bool SVGScriptElement::isAnimatableAttribute(const QualifiedName& name) const | 201 bool SVGScriptElement::isAnimatableAttribute(const QualifiedName& name) const |
202 { | 202 { |
203 if (name == SVGNames::typeAttr) | 203 if (name == SVGNames::typeAttr) |
204 return false; | 204 return false; |
205 | 205 |
206 return SVGElement::isAnimatableAttribute(name); | 206 return SVGElement::isAnimatableAttribute(name); |
207 } | 207 } |
208 #endif | 208 #endif |
209 | 209 |
210 } | 210 } |
OLD | NEW |