Home | History | Annotate | Download | only in dom

Lines Matching full:value

48 // FIXME: According to HTML4, the length attribute's value can be arbitrarily
120 void InputElement::setValueFromRenderer(InputElementData& data, InputElement* inputElement, Element* element, const String& value)
123 ASSERT_UNUSED(inputElement, value == inputElement->sanitizeValue(value) || inputElement->sanitizeValue(value).isEmpty());
126 // The assert macro above may also be simplified to: value == constrainValue(value)
128 if (value == "\n")
131 data.setValue(value);
170 // We use RenderTextControlSingleLine::text() instead of InputElement::value()
191 data.setSize(attribute->isNull() ? InputElement::s_defaultSize : attribute->value().toInt());
199 int maxLength = attribute->isNull() ? InputElement::s_maximumLength : attribute->value().toInt();
214 String oldValue = data.value();