| 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 12 matching lines...) Expand all Loading... |
| 23 #if ENABLE(SVG) | 23 #if ENABLE(SVG) |
| 24 #include "SVGStyledElement.h" | 24 #include "SVGStyledElement.h" |
| 25 | 25 |
| 26 #include "Attr.h" | 26 #include "Attr.h" |
| 27 #include "CSSParser.h" | 27 #include "CSSParser.h" |
| 28 #include "Document.h" | 28 #include "Document.h" |
| 29 #include "EventNames.h" | 29 #include "EventNames.h" |
| 30 #include "HTMLNames.h" | 30 #include "HTMLNames.h" |
| 31 #include "NodeTraversal.h" | 31 #include "NodeTraversal.h" |
| 32 #include "RenderObject.h" | 32 #include "RenderObject.h" |
| 33 #include "RenderSVGResource.h" | |
| 34 #include "RenderSVGResourceClipper.h" | |
| 35 #include "RenderSVGResourceFilter.h" | |
| 36 #include "RenderSVGResourceMasker.h" | |
| 37 #include "SVGElement.h" | 33 #include "SVGElement.h" |
| 38 #include "SVGElementInstance.h" | 34 #include "SVGElementInstance.h" |
| 39 #include "SVGElementRareData.h" | 35 #include "SVGElementRareData.h" |
| 40 #include "SVGNames.h" | 36 #include "SVGNames.h" |
| 41 #include "SVGRenderSupport.h" | |
| 42 #include "SVGSVGElement.h" | 37 #include "SVGSVGElement.h" |
| 43 #include "SVGUseElement.h" | 38 #include "SVGUseElement.h" |
| 44 #include "ShadowRoot.h" | 39 #include "ShadowRoot.h" |
| 45 #include "core/rendering/style/SVGRenderStyle.h" | 40 #include "core/rendering/style/SVGRenderStyle.h" |
| 41 #include "core/rendering/svg/RenderSVGResource.h" |
| 42 #include "core/rendering/svg/RenderSVGResourceClipper.h" |
| 43 #include "core/rendering/svg/RenderSVGResourceFilter.h" |
| 44 #include "core/rendering/svg/RenderSVGResourceMasker.h" |
| 45 #include "core/rendering/svg/SVGRenderSupport.h" |
| 46 #include <wtf/Assertions.h> | 46 #include <wtf/Assertions.h> |
| 47 #include <wtf/HashMap.h> | 47 #include <wtf/HashMap.h> |
| 48 #include <wtf/StdLibExtras.h> | 48 #include <wtf/StdLibExtras.h> |
| 49 #include <wtf/text/WTFString.h> | 49 #include <wtf/text/WTFString.h> |
| 50 | 50 |
| 51 namespace WebCore { | 51 namespace WebCore { |
| 52 | 52 |
| 53 // Animated property definitions | 53 // Animated property definitions |
| 54 DEFINE_ANIMATED_STRING(SVGStyledElement, HTMLNames::classAttr, ClassName, classN
ame) | 54 DEFINE_ANIMATED_STRING(SVGStyledElement, HTMLNames::classAttr, ClassName, classN
ame) |
| 55 | 55 |
| (...skipping 423 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 } | 479 } |
| 480 | 480 |
| 481 bool SVGStyledElement::isKeyboardFocusable(KeyboardEvent*) const | 481 bool SVGStyledElement::isKeyboardFocusable(KeyboardEvent*) const |
| 482 { | 482 { |
| 483 return isMouseFocusable(); | 483 return isMouseFocusable(); |
| 484 } | 484 } |
| 485 | 485 |
| 486 } | 486 } |
| 487 | 487 |
| 488 #endif // ENABLE(SVG) | 488 #endif // ENABLE(SVG) |
| OLD | NEW |