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

/external/webkit/Source/WebKit/chromium/src/
H A DWebFormElement.cpp36 #include "HTMLFormElement.h"
51 return constUnwrap<HTMLFormElement>()->autoComplete();
56 return constUnwrap<HTMLFormElement>()->action();
61 return constUnwrap<HTMLFormElement>()->name();
66 return constUnwrap<HTMLFormElement>()->method();
71 return constUnwrap<HTMLFormElement>()->wasUserSubmitted();
76 unwrap<HTMLFormElement>()->submit();
83 unwrap<HTMLFormElement>()->getNamedElements(name, tempVector);
89 const HTMLFormElement* form = constUnwrap<HTMLFormElement>();
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLFormElement.cpp26 #include "HTMLFormElement.h"
66 HTMLFormElement::HTMLFormElement(const QualifiedName& tagName, Document* document) function in class:WebCore::HTMLFormElement
80 PassRefPtr<HTMLFormElement> HTMLFormElement::create(Document* document)
82 return adoptRef(new HTMLFormElement(formTag, document));
85 PassRefPtr<HTMLFormElement> HTMLFormElement::create(const QualifiedName& tagName, Document* document)
87 return adoptRef(new HTMLFormElement(tagName, document));
90 HTMLFormElement
[all...]
H A DHTMLFormElement.h46 class HTMLFormElement : public HTMLElement { class in namespace:WebCore
48 static PassRefPtr<HTMLFormElement> create(Document*);
49 static PassRefPtr<HTMLFormElement> create(const QualifiedName&, Document*);
50 virtual ~HTMLFormElement();
118 HTMLFormElement(const QualifiedName&, Document*);

Completed in 76 milliseconds