| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2010 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2010 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 bool isValid(Document&) const; | 42 bool isValid(Document&) const; |
| 43 | 43 |
| 44 bool parseAttribute(const QualifiedName&, const AtomicString&); | 44 bool parseAttribute(const QualifiedName&, const AtomicString&); |
| 45 bool isKnownAttribute(const QualifiedName&); | 45 bool isKnownAttribute(const QualifiedName&); |
| 46 | 46 |
| 47 void addSupportedAttributes(HashSet<QualifiedName>&); | 47 void addSupportedAttributes(HashSet<QualifiedName>&); |
| 48 | 48 |
| 49 virtual void trace(Visitor*); | 49 virtual void trace(Visitor*); |
| 50 | 50 |
| 51 protected: | 51 protected: |
| 52 explicit SVGTests(SVGElement* contextElement); | 52 SVGTests(); |
| 53 |
| 54 void initialize(SVGElement*); |
| 53 | 55 |
| 54 private: | 56 private: |
| 55 RefPtrWillBeMember<SVGStaticStringList> m_requiredFeatures; | 57 RefPtrWillBeMember<SVGStaticStringList> m_requiredFeatures; |
| 56 RefPtrWillBeMember<SVGStaticStringList> m_requiredExtensions; | 58 RefPtrWillBeMember<SVGStaticStringList> m_requiredExtensions; |
| 57 RefPtrWillBeMember<SVGStaticStringList> m_systemLanguage; | 59 RefPtrWillBeMember<SVGStaticStringList> m_systemLanguage; |
| 58 }; | 60 }; |
| 59 | 61 |
| 60 } // namespace blink | 62 } // namespace blink |
| 61 | 63 |
| 62 #endif // SVGTests_h | 64 #endif // SVGTests_h |
| OLD | NEW |