| 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 30 matching lines...) Expand all Loading... |
| 41 | 41 |
| 42 DECLARE_VIRTUAL_TRACE(); | 42 DECLARE_VIRTUAL_TRACE(); |
| 43 | 43 |
| 44 private: | 44 private: |
| 45 explicit SVGEllipseElement(Document&); | 45 explicit SVGEllipseElement(Document&); |
| 46 | 46 |
| 47 virtual bool isPresentationAttribute(const QualifiedName&) const override; | 47 virtual bool isPresentationAttribute(const QualifiedName&) const override; |
| 48 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; | 48 virtual bool isPresentationAttributeWithSVGDOM(const QualifiedName&) const o
verride; |
| 49 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; | 49 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) override; |
| 50 | 50 |
| 51 bool isSupportedAttribute(const QualifiedName&); | |
| 52 virtual void svgAttributeChanged(const QualifiedName&) override; | 51 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 53 | 52 |
| 54 virtual bool selfHasRelativeLengths() const override; | 53 virtual bool selfHasRelativeLengths() const override; |
| 55 | 54 |
| 56 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; | 55 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 57 | 56 |
| 58 RefPtrWillBeMember<SVGAnimatedLength> m_cx; | 57 RefPtrWillBeMember<SVGAnimatedLength> m_cx; |
| 59 RefPtrWillBeMember<SVGAnimatedLength> m_cy; | 58 RefPtrWillBeMember<SVGAnimatedLength> m_cy; |
| 60 RefPtrWillBeMember<SVGAnimatedLength> m_rx; | 59 RefPtrWillBeMember<SVGAnimatedLength> m_rx; |
| 61 RefPtrWillBeMember<SVGAnimatedLength> m_ry; | 60 RefPtrWillBeMember<SVGAnimatedLength> m_ry; |
| 62 }; | 61 }; |
| 63 | 62 |
| 64 } // namespace blink | 63 } // namespace blink |
| 65 | 64 |
| 66 #endif // SVGEllipseElement_h | 65 #endif // SVGEllipseElement_h |
| OLD | NEW |