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, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
5 * Copyright (C) 2010 Apple Inc. All rights reserved. | 5 * Copyright (C) 2010 Apple Inc. All rights reserved. |
6 * | 6 * |
7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
11 * | 11 * |
12 * This library is distributed in the hope that it will be useful, | 12 * This library is distributed in the hope that it will be useful, |
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 13 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | 14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
15 * Library General Public License for more details. | 15 * Library General Public License for more details. |
16 * | 16 * |
17 * You should have received a copy of the GNU Library General Public License | 17 * You should have received a copy of the GNU Library General Public License |
18 * along with this library; see the file COPYING.LIB. If not, write to | 18 * along with this library; see the file COPYING.LIB. If not, write to |
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | 19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
20 * Boston, MA 02110-1301, USA. | 20 * Boston, MA 02110-1301, USA. |
21 */ | 21 */ |
22 | 22 |
23 #include "config.h" | 23 #include "config.h" |
24 | 24 |
25 #if ENABLE(SVG) | 25 #if ENABLE(SVG) |
26 #include "SVGAElement.h" | 26 #include "SVGAElement.h" |
27 | 27 |
28 #include "Attr.h" | |
29 #include "Attribute.h" | |
30 #include "Document.h" | |
31 #include "EventNames.h" | |
32 #include "HTMLAnchorElement.h" | 28 #include "HTMLAnchorElement.h" |
33 #include "HTMLParserIdioms.h" | 29 #include "HTMLParserIdioms.h" |
34 #include "KeyboardEvent.h" | |
35 #include "MouseEvent.h" | |
36 #include "NodeRenderingContext.h" | |
37 #include "SVGElementInstance.h" | 30 #include "SVGElementInstance.h" |
38 #include "SVGNames.h" | 31 #include "SVGNames.h" |
39 #include "SVGSMILElement.h" | 32 #include "SVGSMILElement.h" |
40 #include "XLinkNames.h" | 33 #include "XLinkNames.h" |
| 34 #include "core/dom/Attr.h" |
| 35 #include "core/dom/Attribute.h" |
| 36 #include "core/dom/Document.h" |
| 37 #include "core/dom/EventNames.h" |
| 38 #include "core/dom/KeyboardEvent.h" |
| 39 #include "core/dom/MouseEvent.h" |
| 40 #include "core/dom/NodeRenderingContext.h" |
41 #include "core/loader/FrameLoader.h" | 41 #include "core/loader/FrameLoader.h" |
42 #include "core/loader/FrameLoaderTypes.h" | 42 #include "core/loader/FrameLoaderTypes.h" |
43 #include "core/page/EventHandler.h" | 43 #include "core/page/EventHandler.h" |
44 #include "core/page/Frame.h" | 44 #include "core/page/Frame.h" |
45 #include "core/platform/PlatformMouseEvent.h" | 45 #include "core/platform/PlatformMouseEvent.h" |
46 #include "core/platform/network/ResourceRequest.h" | 46 #include "core/platform/network/ResourceRequest.h" |
47 #include "core/rendering/svg/RenderSVGInline.h" | 47 #include "core/rendering/svg/RenderSVGInline.h" |
48 #include "core/rendering/svg/RenderSVGText.h" | 48 #include "core/rendering/svg/RenderSVGText.h" |
49 #include "core/rendering/svg/RenderSVGTransformableContainer.h" | 49 #include "core/rendering/svg/RenderSVGTransformableContainer.h" |
50 | 50 |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
238 return false; | 238 return false; |
239 if (parentNode() && parentNode()->isSVGElement()) | 239 if (parentNode() && parentNode()->isSVGElement()) |
240 return parentNode()->childShouldCreateRenderer(childContext); | 240 return parentNode()->childShouldCreateRenderer(childContext); |
241 | 241 |
242 return SVGElement::childShouldCreateRenderer(childContext); | 242 return SVGElement::childShouldCreateRenderer(childContext); |
243 } | 243 } |
244 | 244 |
245 } // namespace WebCore | 245 } // namespace WebCore |
246 | 246 |
247 #endif // ENABLE(SVG) | 247 #endif // ENABLE(SVG) |
OLD | NEW |