Searched defs:HTMLInputElement (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/html/
H A DHTMLInputElement.h38 class HTMLInputElement : public HTMLTextFormControlElement, public InputElement { class in namespace:WebCore
40 static PassRefPtr<HTMLInputElement> create(const QualifiedName&, Document*, HTMLFormElement*, bool createdByParser);
41 virtual ~HTMLInputElement();
75 // Implementations of HTMLInputElement::stepUp() and stepDown().
209 HTMLInputElement(const QualifiedName&, Document*, HTMLFormElement*, bool createdByParser);
H A DHTMLInputElement.cpp28 #include "HTMLInputElement.h"
73 HTMLInputElement::HTMLInputElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form, bool createdByParser) function in class:WebCore::HTMLInputElement
90 PassRefPtr<HTMLInputElement> HTMLInputElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form, bool createdByParser)
92 return adoptRef(new HTMLInputElement(tagName, document, form, createdByParser));
95 HTMLInputElement::~HTMLInputElement()
102 // Need to remove this from the form while it is still an HTMLInputElement,
107 const AtomicString& HTMLInputElement
[all...]
/external/webkit/Source/WebKit/chromium/src/
H A DWebInputElement.cpp34 #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>()
[all...]

Completed in 81 milliseconds