| 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 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 | 59 |
| 60 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; | 60 virtual bool childShouldCreateRenderer(const NodeRenderingContext&) const; |
| 61 | 61 |
| 62 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGAElement) | 62 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGAElement) |
| 63 // This declaration used to define a non-virtual "String& target() const
" method, that clashes with "virtual String Element::target() const". | 63 // This declaration used to define a non-virtual "String& target() const
" method, that clashes with "virtual String Element::target() const". |
| 64 // That's why it has been renamed to "svgTarget", the CodeGenerators tak
e care of calling svgTargetAnimated() instead of targetAnimated(), see CodeGener
ator.pm. | 64 // That's why it has been renamed to "svgTarget", the CodeGenerators tak
e care of calling svgTargetAnimated() instead of targetAnimated(), see CodeGener
ator.pm. |
| 65 DECLARE_ANIMATED_STRING(SVGTarget, svgTarget) | 65 DECLARE_ANIMATED_STRING(SVGTarget, svgTarget) |
| 66 DECLARE_ANIMATED_STRING(Href, href) | 66 DECLARE_ANIMATED_STRING(Href, href) |
| 67 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) | 67 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) |
| 68 END_DECLARE_ANIMATED_PROPERTIES | 68 END_DECLARE_ANIMATED_PROPERTIES |
| 69 | |
| 70 // SVGTests | |
| 71 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } | |
| 72 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } | |
| 73 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } | |
| 74 }; | 69 }; |
| 75 | 70 |
| 76 } // namespace WebCore | 71 } // namespace WebCore |
| 77 | 72 |
| 78 #endif // SVGAElement_h | 73 #endif // SVGAElement_h |
| OLD | NEW |