Home | History | Annotate | Download | only in dom

Lines Matching full:value

51     virtual String value() const = 0;
71 // Replaces CRs and LFs, shrinks the value for s_maximumLength.
72 // This should be applied to values from the HTML value attribute and the DOM value property.
74 // Replaces CRs and LFs, shrinks the value for the specified maximum length.
91 void setName(const AtomicString& value) { m_name = value; }
93 String value() const { return m_value; }
94 void setValue(const String& value) { m_value = value; }
97 void setSuggestedValue(const String& value) { m_suggestedValue = value; }
100 void setSize(int value) { m_size = value; }
103 void setMaxLength(int value) { m_maxLength = value; }
106 void setCachedSelectionStart(int value) { m_cachedSelectionStart = value; }
109 void setCachedSelectionEnd(int value) { m_cachedSelectionEnd = value; }