Home | History | Annotate | Download | only in html

Lines Matching full:value

89         addCSSLength(attr, CSSPropertyWidth, attr->value());
91 addCSSLength(attr, CSSPropertyHeight, attr->value());
94 addCSSLength(attr, CSSPropertyBorderWidth, attr->value().toInt() ? attr->value() : "0");
100 addCSSLength(attr, CSSPropertyMarginTop, attr->value());
101 addCSSLength(attr, CSSPropertyMarginBottom, attr->value());
103 addCSSLength(attr, CSSPropertyMarginLeft, attr->value());
104 addCSSLength(attr, CSSPropertyMarginRight, attr->value());
108 addCSSProperty(attr, CSSPropertyVerticalAlign, attr->value());
110 if (attr->value().string()[0] == '#')
111 usemap = attr->value();
113 usemap = document()->completeURL(deprecatedParseURL(attr->value())).string();
124 if (!parseCompositeOperator(attr->value(), m_compositeOperator))
127 const AtomicString& newName = attr->value();
135 const AtomicString& newId = attr->value();
239 // check the attribute first for an explicit pixel value
263 // check the attribute first for an explicit pixel value
305 || (attr->name() == usemapAttr && attr->value().string()[0] != '#');
319 void HTMLImageElement::setHeight(int value)
321 setAttribute(heightAttr, String::number(value));
326 // ### return actual value
330 void HTMLImageElement::setHspace(int value)
332 setAttribute(hspaceAttr, String::number(value));
350 void HTMLImageElement::setLongDesc(const String& value)
352 setAttribute(longdescAttr, value);
360 void HTMLImageElement::setLowsrc(const String& value)
362 setAttribute(lowsrcAttr, value);
370 void HTMLImageElement::setSrc(const String& value)
372 setAttribute(srcAttr, value);
381 void HTMLImageElement::setVspace(int value)
383 setAttribute(vspaceAttr, String::number(value));
386 void HTMLImageElement::setWidth(int value)
388 setAttribute(widthAttr, String::number(value));