Home | History | Annotate | Download | only in src

Lines Matching defs:HTMLInputElement

34 #include "HTMLInputElement.h"
45 return constUnwrap<HTMLInputElement>()->isTextField();
50 return constUnwrap<HTMLInputElement>()->isText();
55 return constUnwrap<HTMLInputElement>()->isPasswordField();
60 return constUnwrap<HTMLInputElement>()->isImageButton();
65 return constUnwrap<HTMLInputElement>()->autoComplete();
70 return constUnwrap<HTMLInputElement>()->maxLength();
75 return constUnwrap<HTMLInputElement>()->isActivatedSubmit();
80 unwrap<HTMLInputElement>()->setActivatedSubmit(activated);
85 return constUnwrap<HTMLInputElement>()->size();
90 unwrap<HTMLInputElement>()->setValue(value, sendChangeEvent);
95 return constUnwrap<HTMLInputElement>()->value();
100 unwrap<HTMLInputElement>()->setSuggestedValue(value);
105 return constUnwrap<HTMLInputElement>()->suggestedValue();
110 unwrap<HTMLInputElement>()->setPlaceholder(value);
115 return constUnwrap<HTMLInputElement>()->placeholder();
120 return constUnwrap<HTMLInputElement>()->isAutofilled();
125 unwrap<HTMLInputElement>()->setAutofilled(autoFilled);
130 unwrap<HTMLInputElement>()->setSelectionRange(start, end);
135 return constUnwrap<HTMLInputElement>()->selectionStart();
140 return constUnwrap<HTMLInputElement>()->selectionEnd();
145 return constUnwrap<HTMLInputElement>()->isValidValue(value);
150 return constUnwrap<HTMLInputElement>()->checked();
155 return HTMLInputElement::s_maximumLength;
158 WebInputElement::WebInputElement(const PassRefPtr<HTMLInputElement>& elem)
163 WebInputElement& WebInputElement::operator=(const PassRefPtr<HTMLInputElement>& elem)
169 WebInputElement::operator PassRefPtr<HTMLInputElement>() const
171 return static_cast<HTMLInputElement*>(m_private.get());