| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 | 46 |
| 47 virtual bool isValid() const { return SVGTests::isValid(); } | 47 virtual bool isValid() const { return SVGTests::isValid(); } |
| 48 virtual bool supportsFocus() const { return true; } | 48 virtual bool supportsFocus() const { return true; } |
| 49 | 49 |
| 50 bool isSupportedAttribute(const QualifiedName&); | 50 bool isSupportedAttribute(const QualifiedName&); |
| 51 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 51 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
| 52 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; | 52 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; |
| 53 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; | 53 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons
t AtomicString&, MutableStylePropertySet*) OVERRIDE; |
| 54 virtual void svgAttributeChanged(const QualifiedName&); | 54 virtual void svgAttributeChanged(const QualifiedName&); |
| 55 | 55 |
| 56 virtual void attach(); | 56 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE; |
| 57 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 57 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
| 58 | 58 |
| 59 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); | 59 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); |
| 60 | 60 |
| 61 virtual const AtomicString& imageSourceURL() const OVERRIDE; | 61 virtual const AtomicString& imageSourceURL() const OVERRIDE; |
| 62 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; | 62 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; |
| 63 | 63 |
| 64 virtual bool haveLoadedRequiredResources(); | 64 virtual bool haveLoadedRequiredResources(); |
| 65 | 65 |
| 66 virtual bool selfHasRelativeLengths() const; | 66 virtual bool selfHasRelativeLengths() const; |
| (...skipping 13 matching lines...) Expand all Loading... |
| 80 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } | 80 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } |
| 81 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } | 81 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } |
| 82 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } | 82 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } |
| 83 | 83 |
| 84 SVGImageLoader m_imageLoader; | 84 SVGImageLoader m_imageLoader; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 } // namespace WebCore | 87 } // namespace WebCore |
| 88 | 88 |
| 89 #endif | 89 #endif |
| OLD | NEW |