Home | History | Annotate | Download | only in svg

Lines Matching full:value

59         setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
61 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
63 SVGPreserveAspectRatio::parsePreserveAspectRatio(this, attr->value());
65 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value()));
66 addCSSProperty(attr, CSSPropertyWidth, attr->value());
67 if (widthBaseValue().value(this) < 0.0)
68 document()->accessSVGExtensions()->reportError("A negative value for image attribute <width> is not allowed");
70 setHeightBaseValue(SVGLength(LengthModeHeight, attr->value()));
71 addCSSProperty(attr, CSSPropertyHeight, attr->value());
72 if (heightBaseValue().value(this) < 0.0)
73 document()->accessSVGExtensions()->reportError("A negative value for image attribute <height> is not allowed");