コード例 #1
0
void SVGGlyphElement::parseAttribute(const QualifiedName& name, const AtomicString& value)
{
    if (name == SVGNames::dAttr)
        invalidateGlyphCache();
    else
        SVGElement::parseAttribute(name, value);
}
コード例 #2
0
void SVGGlyphElement::parseAttribute(Attribute* attr)
{
    if (attr->name() == SVGNames::dAttr)
        invalidateGlyphCache();
    else
        SVGStyledElement::parseAttribute(attr);
}
コード例 #3
0
void SVGGlyphElement::removedFrom(ContainerNode* rootParent)
{
    if (rootParent->inDocument())
        invalidateGlyphCache();
    SVGElement::removedFrom(rootParent);
}
コード例 #4
0
Node::InsertionNotificationRequest SVGGlyphElement::insertedInto(ContainerNode* rootParent)
{
    invalidateGlyphCache();
    return SVGElement::insertedInto(rootParent);
}
コード例 #5
0
void SVGGlyphElement::removedFromDocument()
{
    invalidateGlyphCache();
    SVGStyledElement::removedFromDocument();
}
コード例 #6
0
void SVGGlyphElement::insertedIntoDocument()
{
    invalidateGlyphCache();
    SVGStyledElement::insertedIntoDocument();
}