Lines Matching full:value
115 void HTMLDocument::setDir(const String& value)
119 b->setAttribute(dirAttr, value);
127 void HTMLDocument::setDesignMode(const String& value)
130 if (equalIgnoringCase(value, "on"))
132 else if (equalIgnoringCase(value, "off"))
176 void HTMLDocument::setBgColor(const String& value)
182 bodyElement->setBgColor(value);
195 void HTMLDocument::setFgColor(const String& value)
201 bodyElement->setText(value);
214 void HTMLDocument::setAlinkColor(const String& value)
221 // document's link colors over and over to the same value and we
223 if (bodyElement->aLink() != value)
224 bodyElement->setALink(value);
238 void HTMLDocument::setLinkColor(const String& value)
245 // document's link colors over and over to the same value and we
247 if (bodyElement->link() != value)
248 bodyElement->setLink(value);
262 void HTMLDocument::setVlinkColor(const String& value)
269 // document's link colors over and over to the same value and we
271 if (bodyElement->vLink() != value)
272 bodyElement->setVLink(value);