| 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, |
| 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 "SVGStyledElement.h" | 24 #include "SVGStyledElement.h" |
| 25 | 25 |
| 26 #include "Attr.h" | |
| 27 #include "Document.h" | |
| 28 #include "EventNames.h" | |
| 29 #include "HTMLNames.h" | 26 #include "HTMLNames.h" |
| 30 #include "NodeTraversal.h" | |
| 31 #include "SVGElement.h" | 27 #include "SVGElement.h" |
| 32 #include "SVGElementInstance.h" | 28 #include "SVGElementInstance.h" |
| 33 #include "SVGElementRareData.h" | 29 #include "SVGElementRareData.h" |
| 34 #include "SVGNames.h" | 30 #include "SVGNames.h" |
| 35 #include "SVGSVGElement.h" | 31 #include "SVGSVGElement.h" |
| 36 #include "SVGUseElement.h" | 32 #include "SVGUseElement.h" |
| 37 #include "ShadowRoot.h" | |
| 38 #include "core/css/CSSParser.h" | 33 #include "core/css/CSSParser.h" |
| 34 #include "core/dom/Attr.h" |
| 35 #include "core/dom/Document.h" |
| 36 #include "core/dom/EventNames.h" |
| 37 #include "core/dom/NodeTraversal.h" |
| 38 #include "core/dom/ShadowRoot.h" |
| 39 #include "core/rendering/RenderObject.h" | 39 #include "core/rendering/RenderObject.h" |
| 40 #include "core/rendering/style/SVGRenderStyle.h" | 40 #include "core/rendering/style/SVGRenderStyle.h" |
| 41 #include "core/rendering/svg/RenderSVGResource.h" | 41 #include "core/rendering/svg/RenderSVGResource.h" |
| 42 #include "core/rendering/svg/RenderSVGResourceClipper.h" | 42 #include "core/rendering/svg/RenderSVGResourceClipper.h" |
| 43 #include "core/rendering/svg/RenderSVGResourceFilter.h" | 43 #include "core/rendering/svg/RenderSVGResourceFilter.h" |
| 44 #include "core/rendering/svg/RenderSVGResourceMasker.h" | 44 #include "core/rendering/svg/RenderSVGResourceMasker.h" |
| 45 #include "core/rendering/svg/SVGRenderSupport.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> |
| (...skipping 430 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 |