| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
| 3 * Copyright (C) 2004, 2005, 2007, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007, 2008 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 24 matching lines...) Expand all Loading... |
| 35 #include "core/rendering/svg/RenderSVGResource.h" | 35 #include "core/rendering/svg/RenderSVGResource.h" |
| 36 #include "core/rendering/svg/RenderSVGResourceClipper.h" | 36 #include "core/rendering/svg/RenderSVGResourceClipper.h" |
| 37 #include "core/rendering/svg/RenderSVGResourceFilter.h" | 37 #include "core/rendering/svg/RenderSVGResourceFilter.h" |
| 38 #include "core/rendering/svg/RenderSVGResourceMasker.h" | 38 #include "core/rendering/svg/RenderSVGResourceMasker.h" |
| 39 #include "core/rendering/svg/SVGRenderSupport.h" | 39 #include "core/rendering/svg/SVGRenderSupport.h" |
| 40 #include "core/svg/SVGElement.h" | 40 #include "core/svg/SVGElement.h" |
| 41 #include "core/svg/SVGElementInstance.h" | 41 #include "core/svg/SVGElementInstance.h" |
| 42 #include "core/svg/SVGElementRareData.h" | 42 #include "core/svg/SVGElementRareData.h" |
| 43 #include "core/svg/SVGSVGElement.h" | 43 #include "core/svg/SVGSVGElement.h" |
| 44 #include "core/svg/SVGUseElement.h" | 44 #include "core/svg/SVGUseElement.h" |
| 45 #include <wtf/Assertions.h> | 45 #include "wtf/Assertions.h" |
| 46 #include <wtf/HashMap.h> | 46 #include "wtf/HashMap.h" |
| 47 #include <wtf/StdLibExtras.h> | 47 #include "wtf/StdLibExtras.h" |
| 48 #include <wtf/text/WTFString.h> | 48 #include "wtf/text/WTFString.h" |
| 49 | 49 |
| 50 namespace WebCore { | 50 namespace WebCore { |
| 51 | 51 |
| 52 // Animated property definitions | 52 // Animated property definitions |
| 53 DEFINE_ANIMATED_STRING(SVGStyledElement, HTMLNames::classAttr, ClassName, classN
ame) | 53 DEFINE_ANIMATED_STRING(SVGStyledElement, HTMLNames::classAttr, ClassName, classN
ame) |
| 54 | 54 |
| 55 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGStyledElement) | 55 BEGIN_REGISTER_ANIMATED_PROPERTIES(SVGStyledElement) |
| 56 REGISTER_LOCAL_ANIMATED_PROPERTY(className) | 56 REGISTER_LOCAL_ANIMATED_PROPERTY(className) |
| 57 END_REGISTER_ANIMATED_PROPERTIES | 57 END_REGISTER_ANIMATED_PROPERTIES |
| 58 | 58 |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 463 continue; | 463 continue; |
| 464 } | 464 } |
| 465 | 465 |
| 466 // Register us in the parent element map. | 466 // Register us in the parent element map. |
| 467 toSVGStyledElement(element)->updateRelativeLengthsInformation(hasRelativ
eLengths, this); | 467 toSVGStyledElement(element)->updateRelativeLengthsInformation(hasRelativ
eLengths, this); |
| 468 break; | 468 break; |
| 469 } | 469 } |
| 470 } | 470 } |
| 471 | 471 |
| 472 } | 472 } |
| OLD | NEW |