Home | History | Annotate | Download | only in svg

Lines Matching refs:attr

71 void SVGMaskElement::parseMappedAttribute(MappedAttribute* attr)
73 if (attr->name() == SVGNames::maskUnitsAttr) {
74 if (attr->value() == "userSpaceOnUse")
76 else if (attr->value() == "objectBoundingBox")
78 } else if (attr->name() == SVGNames::maskContentUnitsAttr) {
79 if (attr->value() == "userSpaceOnUse")
81 else if (attr->value() == "objectBoundingBox")
83 } else if (attr->name() == SVGNames::xAttr)
84 setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
85 else if (attr->name() == SVGNames::yAttr)
86 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
87 else if (attr->name() == SVGNames::widthAttr)
88 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value()));
89 else if (attr->name() == SVGNames::heightAttr)
90 setHeightBaseValue(SVGLength(LengthModeHeight, attr->value()));
92 if (SVGURIReference::parseMappedAttribute(attr))
94 if (SVGTests::parseMappedAttribute(attr))
96 if (SVGLangSpace::parseMappedAttribute(attr))
98 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
100 SVGStyledElement::parseMappedAttribute(attr);