Home | History | Annotate | Download | only in svg

Lines Matching full:value

54         setXBaseValue(SVGLength(LengthModeWidth, attr->value()));
56 setYBaseValue(SVGLength(LengthModeHeight, attr->value()));
58 setRxBaseValue(SVGLength(LengthModeWidth, attr->value()));
59 if (rxBaseValue().value(this) < 0.0)
60 document()->accessSVGExtensions()->reportError("A negative value for rect <rx> is not allowed");
62 setRyBaseValue(SVGLength(LengthModeHeight, attr->value()));
63 if (ryBaseValue().value(this) < 0.0)
64 document()->accessSVGExtensions()->reportError("A negative value for rect <ry> is not allowed");
66 setWidthBaseValue(SVGLength(LengthModeWidth, attr->value()));
67 if (widthBaseValue().value(this) < 0.0)
68 document()->accessSVGExtensions()->reportError("A negative value for rect <width> is not allowed");
70 setHeightBaseValue(SVGLength(LengthModeHeight, attr->value()));
71 if (heightBaseValue().value(this) < 0.0)
72 document()->accessSVGExtensions()->reportError("A negative value for rect <height> is not allowed");
134 FloatRect rect(x().value(this), y().value(this), width().value(this), height().value(this));
139 float _rx = hasRx ? rx().value(this) : ry().value(this);
140 float _ry = hasRy ? ry().value(this) : rx().value(this);