| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 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 11 matching lines...) Expand all Loading... |
| 22 | 22 |
| 23 #include "core/svg/SVGGElement.h" | 23 #include "core/svg/SVGGElement.h" |
| 24 | 24 |
| 25 #include "SVGNames.h" | 25 #include "SVGNames.h" |
| 26 #include "core/rendering/svg/RenderSVGHiddenContainer.h" | 26 #include "core/rendering/svg/RenderSVGHiddenContainer.h" |
| 27 #include "core/rendering/svg/RenderSVGResource.h" | 27 #include "core/rendering/svg/RenderSVGResource.h" |
| 28 #include "core/rendering/svg/RenderSVGTransformableContainer.h" | 28 #include "core/rendering/svg/RenderSVGTransformableContainer.h" |
| 29 | 29 |
| 30 namespace WebCore { | 30 namespace WebCore { |
| 31 | 31 |
| 32 SVGGElement::SVGGElement(Document& document, ConstructionType constructionType) | 32 inline SVGGElement::SVGGElement(Document& document, ConstructionType constructio
nType) |
| 33 : SVGGraphicsElement(SVGNames::gTag, document, constructionType) | 33 : SVGGraphicsElement(SVGNames::gTag, document, constructionType) |
| 34 { | 34 { |
| 35 ScriptWrappable::init(this); | 35 ScriptWrappable::init(this); |
| 36 } | 36 } |
| 37 | 37 |
| 38 DEFINE_NODE_FACTORY(SVGGElement) |
| 39 |
| 38 bool SVGGElement::isSupportedAttribute(const QualifiedName& attrName) | 40 bool SVGGElement::isSupportedAttribute(const QualifiedName& attrName) |
| 39 { | 41 { |
| 40 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); | 42 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ()); |
| 41 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); | 43 return supportedAttributes.contains<SVGAttributeHashTranslator>(attrName); |
| 42 } | 44 } |
| 43 | 45 |
| 44 void SVGGElement::parseAttribute(const QualifiedName& name, const AtomicString&
value) | 46 void SVGGElement::parseAttribute(const QualifiedName& name, const AtomicString&
value) |
| 45 { | 47 { |
| 46 if (!isSupportedAttribute(name)) { | 48 if (!isSupportedAttribute(name)) { |
| 47 SVGGraphicsElement::parseAttribute(name, value); | 49 SVGGraphicsElement::parseAttribute(name, value); |
| (...skipping 29 matching lines...) Expand all Loading... |
| 77 } | 79 } |
| 78 | 80 |
| 79 bool SVGGElement::rendererIsNeeded(const RenderStyle&) | 81 bool SVGGElement::rendererIsNeeded(const RenderStyle&) |
| 80 { | 82 { |
| 81 // Unlike SVGElement::rendererIsNeeded(), we still create renderers, even if | 83 // Unlike SVGElement::rendererIsNeeded(), we still create renderers, even if |
| 82 // display is set to 'none' - which is special to SVG <g> container elements
. | 84 // display is set to 'none' - which is special to SVG <g> container elements
. |
| 83 return parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElem
ent(); | 85 return parentOrShadowHostElement() && parentOrShadowHostElement()->isSVGElem
ent(); |
| 84 } | 86 } |
| 85 | 87 |
| 86 } | 88 } |
| OLD | NEW |