| 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, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 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, |
| 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 13 * Library General Public License for more details. | 13 * Library General Public License for more details. |
| 14 * | 14 * |
| 15 * You should have received a copy of the GNU Library General Public License | 15 * You should have received a copy of the GNU Library General Public License |
| 16 * along with this library; see the file COPYING.LIB. If not, write to | 16 * along with this library; see the file COPYING.LIB. If not, write to |
| 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
| 18 * Boston, MA 02110-1301, USA. | 18 * Boston, MA 02110-1301, USA. |
| 19 */ | 19 */ |
| 20 | 20 |
| 21 #include "config.h" | 21 #include "config.h" |
| 22 | 22 |
| 23 #if ENABLE(SVG) | 23 #if ENABLE(SVG) |
| 24 #include "SVGTests.h" | 24 #include "SVGTests.h" |
| 25 | 25 |
| 26 #include "Attribute.h" | |
| 27 #include "DOMImplementation.h" | |
| 28 #include "SVGElement.h" | 26 #include "SVGElement.h" |
| 29 #include "SVGNames.h" | 27 #include "SVGNames.h" |
| 30 #include "SVGStringList.h" | 28 #include "SVGStringList.h" |
| 29 #include "core/dom/Attribute.h" |
| 30 #include "core/dom/DOMImplementation.h" |
| 31 #include "core/platform/Language.h" | 31 #include "core/platform/Language.h" |
| 32 | 32 |
| 33 namespace WebCore { | 33 namespace WebCore { |
| 34 | 34 |
| 35 // Define custom non-animated property 'requiredFeatures'. | 35 // Define custom non-animated property 'requiredFeatures'. |
| 36 const SVGPropertyInfo* SVGTests::requiredFeaturesPropertyInfo() | 36 const SVGPropertyInfo* SVGTests::requiredFeaturesPropertyInfo() |
| 37 { | 37 { |
| 38 static const SVGPropertyInfo* s_propertyInfo = 0; | 38 static const SVGPropertyInfo* s_propertyInfo = 0; |
| 39 if (!s_propertyInfo) { | 39 if (!s_propertyInfo) { |
| 40 s_propertyInfo = new SVGPropertyInfo(AnimatedUnknown, | 40 s_propertyInfo = new SVGPropertyInfo(AnimatedUnknown, |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 | 214 |
| 215 SVGStringList& SVGTests::systemLanguage() | 215 SVGStringList& SVGTests::systemLanguage() |
| 216 { | 216 { |
| 217 m_systemLanguage.shouldSynchronize = true; | 217 m_systemLanguage.shouldSynchronize = true; |
| 218 return m_systemLanguage.value; | 218 return m_systemLanguage.value; |
| 219 } | 219 } |
| 220 | 220 |
| 221 } | 221 } |
| 222 | 222 |
| 223 #endif // ENABLE(SVG) | 223 #endif // ENABLE(SVG) |
| OLD | NEW |