コード例 #1
0
END_REGISTER_ANIMATED_PROPERTIES

SVGGElement::SVGGElement(const QualifiedName& tagName, Document& document)
    : SVGGraphicsElement(tagName, document)
{
    ASSERT(hasTagName(SVGNames::gTag));
    registerAnimatedPropertiesForSVGGElement();
}
コード例 #2
0
ファイル: SVGGElement.cpp プロジェクト: kcomkar/webkit
END_REGISTER_ANIMATED_PROPERTIES

SVGGElement::SVGGElement(const QualifiedName& tagName, Document* document, ConstructionType constructionType)
    : SVGStyledTransformableElement(tagName, document, constructionType)
{
    ASSERT(hasTagName(SVGNames::gTag));
    registerAnimatedPropertiesForSVGGElement();
}
コード例 #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();
}