Home | History | Annotate | Download | only in svg

Lines Matching refs:attr

65 void SVGRadialGradientElement::parseMappedAttribute(Attribute* attr)
67 if (attr->name() == SVGNames::cxAttr)
68 setCxBaseValue(SVGLength(LengthModeWidth, attr->value()));
69 else if (attr->name() == SVGNames::cyAttr)
70 setCyBaseValue(SVGLength(LengthModeHeight, attr->value()));
71 else if (attr->name() == SVGNames::rAttr) {
72 setRBaseValue(SVGLength(LengthModeOther, attr->value()));
75 } else if (attr->name() == SVGNames::fxAttr)
76 setFxBaseValue(SVGLength(LengthModeWidth, attr->value()));
77 else if (attr->name() == SVGNames::fyAttr)
78 setFyBaseValue(SVGLength(LengthModeHeight, attr->value()));
80 SVGGradientElement::parseMappedAttribute(attr);