Home | History | Annotate | Download | only in svg

Lines Matching refs:attr

51 void SVGRectElement::parseMappedAttribute(MappedAttribute* attr)
53 if (attr->name() == SVGNames::xAttr)
54 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
55 else if (attr->name() == SVGNames::yAttr)
56 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
57 else if (attr->name() == SVGNames::rxAttr) {
58 setRxBaseValue(SVGLength(LengthModeWidth, attr->value()));
61 } else if (attr->name() == SVGNames::ryAttr) {
62 setRyBaseValue(SVGLength(LengthModeHeight, attr->value()));
65 } else if (attr->name() == SVGNames::widthAttr) {
66 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value()));
69 } else if (attr->name() == SVGNames::heightAttr) {
70 setHeightBaseValue(SVGLength(LengthModeHeight, attr->value()));
74 if (SVGTests::parseMappedAttribute(attr))
76 if (SVGLangSpace::parseMappedAttribute(attr))
78 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
80 SVGStyledTransformableElement::parseMappedAttribute(attr);