Exemplo n.º 1
0
END_REGISTER_ANIMATED_PROPERTIES

SVGGElement::SVGGElement(const QualifiedName& tagName, Document& document)
    : SVGGraphicsElement(tagName, document)
{
    ASSERT(hasTagName(SVGNames::gTag));
    registerAnimatedPropertiesForSVGGElement();
}
Exemplo n.º 2
0
END_REGISTER_ANIMATED_PROPERTIES

SVGGElement::SVGGElement(const QualifiedName& tagName, Document* document, ConstructionType constructionType)
    : SVGStyledTransformableElement(tagName, document, constructionType)
{
    ASSERT(hasTagName(SVGNames::gTag));
    registerAnimatedPropertiesForSVGGElement();
}
Exemplo n.º 3
0
END_REGISTER_ANIMATED_PROPERTIES

SVGGElement::SVGGElement(const QualifiedName& tagName, Document& document, ConstructionType constructionType)
    : SVGGraphicsElement(tagName, document, constructionType)
{
    ASSERT(hasTagName(SVGNames::gTag));
    ScriptWrappable::init(this);
    registerAnimatedPropertiesForSVGGElement();
}