| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 explicit SVGTextPathElement(Document&); | 69 explicit SVGTextPathElement(Document&); |
| 70 | 70 |
| 71 virtual ~SVGTextPathElement(); | 71 virtual ~SVGTextPathElement(); |
| 72 | 72 |
| 73 void clearResourceReferences(); | 73 void clearResourceReferences(); |
| 74 | 74 |
| 75 virtual void buildPendingResource() override; | 75 virtual void buildPendingResource() override; |
| 76 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; | 76 virtual InsertionNotificationRequest insertedInto(ContainerNode*) override; |
| 77 virtual void removedFrom(ContainerNode*) override; | 77 virtual void removedFrom(ContainerNode*) override; |
| 78 | 78 |
| 79 bool isSupportedAttribute(const QualifiedName&); | |
| 80 virtual void svgAttributeChanged(const QualifiedName&) override; | 79 virtual void svgAttributeChanged(const QualifiedName&) override; |
| 81 | 80 |
| 82 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; | 81 virtual LayoutObject* createLayoutObject(const ComputedStyle&) override; |
| 83 virtual bool layoutObjectIsNeeded(const ComputedStyle&) override; | 82 virtual bool layoutObjectIsNeeded(const ComputedStyle&) override; |
| 84 | 83 |
| 85 virtual bool selfHasRelativeLengths() const override; | 84 virtual bool selfHasRelativeLengths() const override; |
| 86 | 85 |
| 87 RefPtrWillBeMember<SVGAnimatedLength> m_startOffset; | 86 RefPtrWillBeMember<SVGAnimatedLength> m_startOffset; |
| 88 RefPtrWillBeMember<SVGAnimatedEnumeration<SVGTextPathMethodType>> m_method; | 87 RefPtrWillBeMember<SVGAnimatedEnumeration<SVGTextPathMethodType>> m_method; |
| 89 RefPtrWillBeMember<SVGAnimatedEnumeration<SVGTextPathSpacingType>> m_spacing
; | 88 RefPtrWillBeMember<SVGAnimatedEnumeration<SVGTextPathSpacingType>> m_spacing
; |
| 90 }; | 89 }; |
| 91 | 90 |
| 92 } // namespace blink | 91 } // namespace blink |
| 93 | 92 |
| 94 #endif // SVGTextPathElement_h | 93 #endif // SVGTextPathElement_h |
| OLD | NEW |