Home | History | Annotate | Download | only in svg

Lines Matching refs:attrName

77 void SVGLineElement::svgAttributeChanged(const QualifiedName& attrName)
79 SVGStyledTransformableElement::svgAttributeChanged(attrName);
81 bool isLengthAttribute = attrName == SVGNames::x1Attr
82 || attrName == SVGNames::y1Attr
83 || attrName == SVGNames::x2Attr
84 || attrName == SVGNames::y2Attr;
89 if (SVGTests::handleAttributeChange(this, attrName))
102 if (SVGLangSpace::isKnownAttribute(attrName)
103 || SVGExternalResourcesRequired::isKnownAttribute(attrName))
107 void SVGLineElement::synchronizeProperty(const QualifiedName& attrName)
109 SVGStyledTransformableElement::synchronizeProperty(attrName);
111 if (attrName == anyQName()) {
117 SVGTests::synchronizeProperties(this, attrName);
121 if (attrName == SVGNames::x1Attr)
123 else if (attrName == SVGNames::y1Attr)
125 else if (attrName == SVGNames::x2Attr)
127 else if (attrName == SVGNames::y2Attr)
129 else if (SVGExternalResourcesRequired::isKnownAttribute(attrName))
131 else if (SVGTests::isKnownAttribute(attrName))
132 SVGTests::synchronizeProperties(this, attrName);