Home | History | Annotate | Download | only in svg

Lines Matching refs:attr

58 void SVGRadialGradientElement::parseMappedAttribute(MappedAttribute* attr)
60 if (attr->name() == SVGNames::cxAttr)
61 setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
62 else if (attr->name() == SVGNames::cyAttr)
63 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
64 else if (attr->name() == SVGNames::rAttr) {
65 setRBaseValue(SVGLength(LengthModeOther, attr->value()));
68 } else if (attr->name() == SVGNames::fxAttr)
69 setFxBaseValue(SVGLength(LengthModeWidth, attr->value()));
70 else if (attr->name() == SVGNames::fyAttr)
71 setFyBaseValue(SVGLength(LengthModeHeight, attr->value()));
73 SVGGradientElement::parseMappedAttribute(attr);