Lines Matching refs:attr
53 void SVGGradientElement::parseMappedAttribute(MappedAttribute* attr)
55 if (attr->name() == SVGNames::gradientUnitsAttr) {
56 if (attr->value() == "userSpaceOnUse")
58 else if (attr->value() == "objectBoundingBox")
60 } else if (attr->name() == SVGNames::gradientTransformAttr) {
62 if (!SVGTransformable::parseTransformAttribute(gradientTransforms, attr->value())) {
66 } else if (attr->name() == SVGNames::spreadMethodAttr) {
67 if (attr->value() == "reflect")
69 else if (attr->value() == "repeat")
71 else if (attr->value() == "pad")
74 if (SVGURIReference::parseMappedAttribute(attr))
76 if (SVGExternalResourcesRequired::parseMappedAttribute(attr))
79 SVGStyledElement::parseMappedAttribute(attr);