Home | History | Annotate | Download | only in web

Lines Matching defs:HTMLInputElement

41 #include "core/html/HTMLInputElement.h"
52 return constUnwrap<HTMLInputElement>()->isTextField();
57 return constUnwrap<HTMLInputElement>()->isText();
62 return constUnwrap<HTMLInputElement>()->isPasswordField();
67 return constUnwrap<HTMLInputElement>()->isImageButton();
72 return constUnwrap<HTMLInputElement>()->isRadioButton();
77 return constUnwrap<HTMLInputElement>()->isCheckbox();
82 return constUnwrap<HTMLInputElement>()->shouldAutocomplete();
87 return constUnwrap<HTMLInputElement>()->maxLength();
92 return constUnwrap<HTMLInputElement>()->isActivatedSubmit();
97 unwrap<HTMLInputElement>()->setActivatedSubmit(activated);
102 return constUnwrap<HTMLInputElement>()->size();
107 unwrap<HTMLInputElement>()->setValue(value, sendChangeEvent ? DispatchChangeEvent : DispatchNoEvent);
112 return constUnwrap<HTMLInputElement>()->value();
117 return constUnwrap<HTMLInputElement>()->innerTextValue();
122 unwrap<HTMLInputElement>()->setEditingValue(value);
127 unwrap<HTMLInputElement>()->setSuggestedValue(value);
132 return constUnwrap<HTMLInputElement>()->suggestedValue();
137 unwrap<HTMLInputElement>()->setAttribute(HTMLNames::placeholderAttr, value);
142 return constUnwrap<HTMLInputElement>()->fastGetAttribute(HTMLNames::placeholderAttr);
147 return constUnwrap<HTMLInputElement>()->isAutofilled();
152 unwrap<HTMLInputElement>()->setAutofilled(autofilled);
157 unwrap<HTMLInputElement>()->setSelectionRange(start, end);
162 return constUnwrap<HTMLInputElement>()->selectionStart();
167 return constUnwrap<HTMLInputElement>()->selectionEnd();
172 return constUnwrap<HTMLInputElement>()->isValidValue(value);
177 unwrap<HTMLInputElement>()->setChecked(nowChecked, sendChangeEvent ? DispatchChangeEvent : DispatchNoEvent);
182 return constUnwrap<HTMLInputElement>()->checked();
187 return constUnwrap<HTMLInputElement>()->multiple();
193 HTMLDataListElement* dataList = static_cast<HTMLDataListElement*>(constUnwrap<HTMLInputElement>()->list());
202 return constUnwrap<HTMLInputElement>()->localizeValue(proposedValue);
208 return constUnwrap<HTMLInputElement>()->isSpeechEnabled();
217 InputFieldSpeechButtonElement* speechButton = toInputFieldSpeechButtonElement(constUnwrap<HTMLInputElement>()->speechButtonElement());
228 InputFieldSpeechButtonElement* speechButton = toInputFieldSpeechButtonElement(constUnwrap<HTMLInputElement>()->speechButtonElement());
237 InputFieldSpeechButtonElement* speechButton = toInputFieldSpeechButtonElement(constUnwrap<HTMLInputElement>()->speechButtonElement());
245 return HTMLInputElement::maximumLength;
250 return constUnwrap<HTMLInputElement>()->directionForFormData();
261 return WebElement(constUnwrap<HTMLInputElement>()->passwordGeneratorButtonElement());
264 WebInputElement::WebInputElement(const PassRefPtr<HTMLInputElement>& elem)
269 WebInputElement& WebInputElement::operator=(const PassRefPtr<HTMLInputElement>& elem)
275 WebInputElement::operator PassRefPtr<HTMLInputElement>() const