| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 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 28 matching lines...) Expand all Loading... |
| 39 bool currentFrameHasSingleSecurityOrigin() const; | 39 bool currentFrameHasSingleSecurityOrigin() const; |
| 40 | 40 |
| 41 SVGAnimatedLength* x() const { return m_x.get(); } | 41 SVGAnimatedLength* x() const { return m_x.get(); } |
| 42 SVGAnimatedLength* y() const { return m_y.get(); } | 42 SVGAnimatedLength* y() const { return m_y.get(); } |
| 43 SVGAnimatedLength* width() const { return m_width.get(); } | 43 SVGAnimatedLength* width() const { return m_width.get(); } |
| 44 SVGAnimatedLength* height() const { return m_height.get(); } | 44 SVGAnimatedLength* height() const { return m_height.get(); } |
| 45 | 45 |
| 46 private: | 46 private: |
| 47 explicit SVGImageElement(Document&); | 47 explicit SVGImageElement(Document&); |
| 48 | 48 |
| 49 virtual bool isValid() const OVERRIDE { return SVGTests::isValid(); } | |
| 50 virtual bool isStructurallyExternal() const OVERRIDE { return !hrefCurrentVa
lue().isNull(); } | 49 virtual bool isStructurallyExternal() const OVERRIDE { return !hrefCurrentVa
lue().isNull(); } |
| 51 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(
); } | 50 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners(
); } |
| 52 | 51 |
| 53 bool isSupportedAttribute(const QualifiedName&); | 52 bool isSupportedAttribute(const QualifiedName&); |
| 54 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
| 55 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; | 54 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; |
| 56 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; | 55 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; |
| 57 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 56 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; |
| 58 | 57 |
| 59 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; | 58 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; |
| (...skipping 18 matching lines...) Expand all Loading... |
| 78 END_DECLARE_ANIMATED_PROPERTIES | 77 END_DECLARE_ANIMATED_PROPERTIES |
| 79 | 78 |
| 80 SVGImageLoader m_imageLoader; | 79 SVGImageLoader m_imageLoader; |
| 81 }; | 80 }; |
| 82 | 81 |
| 83 DEFINE_NODE_TYPE_CASTS(SVGImageElement, hasTagName(SVGNames::imageTag)); | 82 DEFINE_NODE_TYPE_CASTS(SVGImageElement, hasTagName(SVGNames::imageTag)); |
| 84 | 83 |
| 85 } // namespace WebCore | 84 } // namespace WebCore |
| 86 | 85 |
| 87 #endif | 86 #endif |
| OLD | NEW |