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