| 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. |
| (...skipping 24 matching lines...) Expand all Loading... |
| 35 #include "FrameLoaderTypes.h" | 35 #include "FrameLoaderTypes.h" |
| 36 #include "HTMLAnchorElement.h" | 36 #include "HTMLAnchorElement.h" |
| 37 #include "HTMLParserIdioms.h" | 37 #include "HTMLParserIdioms.h" |
| 38 #include "KeyboardEvent.h" | 38 #include "KeyboardEvent.h" |
| 39 #include "MouseEvent.h" | 39 #include "MouseEvent.h" |
| 40 #include "NodeRenderingContext.h" | 40 #include "NodeRenderingContext.h" |
| 41 #include "PlatformMouseEvent.h" | 41 #include "PlatformMouseEvent.h" |
| 42 #include "RenderSVGInline.h" | 42 #include "RenderSVGInline.h" |
| 43 #include "RenderSVGText.h" | 43 #include "RenderSVGText.h" |
| 44 #include "RenderSVGTransformableContainer.h" | 44 #include "RenderSVGTransformableContainer.h" |
| 45 #include "ResourceRequest.h" | |
| 46 #include "SVGElementInstance.h" | 45 #include "SVGElementInstance.h" |
| 47 #include "SVGNames.h" | 46 #include "SVGNames.h" |
| 48 #include "SVGSMILElement.h" | 47 #include "SVGSMILElement.h" |
| 49 #include "XLinkNames.h" | 48 #include "XLinkNames.h" |
| 49 #include "core/platform/network/ResourceRequest.h" |
| 50 | 50 |
| 51 namespace WebCore { | 51 namespace WebCore { |
| 52 | 52 |
| 53 using namespace HTMLNames; | 53 using namespace HTMLNames; |
| 54 | 54 |
| 55 // Animated property definitions | 55 // Animated property definitions |
| 56 DEFINE_ANIMATED_STRING(SVGAElement, SVGNames::targetAttr, SVGTarget, svgTarget) | 56 DEFINE_ANIMATED_STRING(SVGAElement, SVGNames::targetAttr, SVGTarget, svgTarget) |
| 57 DEFINE_ANIMATED_STRING(SVGAElement, XLinkNames::hrefAttr, Href, href) | 57 DEFINE_ANIMATED_STRING(SVGAElement, XLinkNames::hrefAttr, Href, href) |
| 58 DEFINE_ANIMATED_BOOLEAN(SVGAElement, SVGNames::externalResourcesRequiredAttr, Ex
ternalResourcesRequired, externalResourcesRequired) | 58 DEFINE_ANIMATED_BOOLEAN(SVGAElement, SVGNames::externalResourcesRequiredAttr, Ex
ternalResourcesRequired, externalResourcesRequired) |
| 59 | 59 |
| (...skipping 178 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 |