OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 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 * | 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 | 65 |
66 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGFEImageElement) | 66 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGFEImageElement) |
67 DECLARE_ANIMATED_PRESERVEASPECTRATIO(PreserveAspectRatio, preserveAspect
Ratio) | 67 DECLARE_ANIMATED_PRESERVEASPECTRATIO(PreserveAspectRatio, preserveAspect
Ratio) |
68 DECLARE_ANIMATED_STRING(Href, href) | 68 DECLARE_ANIMATED_STRING(Href, href) |
69 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) | 69 DECLARE_ANIMATED_BOOLEAN(ExternalResourcesRequired, externalResourcesReq
uired) |
70 END_DECLARE_ANIMATED_PROPERTIES | 70 END_DECLARE_ANIMATED_PROPERTIES |
71 | 71 |
72 ResourcePtr<ImageResource> m_cachedImage; | 72 ResourcePtr<ImageResource> m_cachedImage; |
73 }; | 73 }; |
74 | 74 |
75 inline SVGFEImageElement* toSVGFEImageElement(Node* node) | 75 DEFINE_NODE_TYPE_CASTS(SVGFEImageElement, hasTagName(SVGNames::feImageTag)); |
76 { | |
77 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->hasTagName(SVGNames::feImage
Tag)); | |
78 return static_cast<SVGFEImageElement*>(node); | |
79 } | |
80 | 76 |
81 } // namespace WebCore | 77 } // namespace WebCore |
82 | 78 |
83 #endif | 79 #endif |
OLD | NEW |