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

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormControlElement.h39 // HTMLFormControlElement is the default implementation of FormAssociatedElement,
40 // and form-associated element implementations should use HTMLFormControlElement
42 class HTMLFormControlElement : public LabelableElement, public FormAssociatedElement { class in namespace:blink
43 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(HTMLFormControlElement);
46 virtual ~HTMLFormControlElement();
107 static HTMLFormControlElement* enclosingFormControlElement(Node*);
119 HTMLFormControlElement(const QualifiedName& tagName, Document&, HTMLFormElement*);
194 DEFINE_HTMLELEMENT_TYPE_CASTS_WITH_FUNCTION(HTMLFormControlElement);
195 DEFINE_TYPE_CASTS(HTMLFormControlElement, FormAssociatedElement, control, control->isFormControlElement(), control.isFormControlElement());
H A DHTMLFormControlElement.cpp26 #include "core/html/HTMLFormControlElement.h"
49 HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tagName, Document& document, HTMLFormElement* form) function in class:blink::HTMLFormControlElement
68 HTMLFormControlElement::~HTMLFormControlElement()
75 void HTMLFormControlElement::trace(Visitor* visitor)
81 String HTMLFormControlElement::formEnctype() const
89 void HTMLFormControlElement::setFormEnctype(const AtomicString& value)
94 String HTMLFormControlElement::formMethod() const
102 void HTMLFormControlElement
[all...]
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebFormControlElement.cpp35 #include "core/html/HTMLFormControlElement.h"
47 return !constUnwrap<HTMLFormControlElement>()->isDisabledFormControl();
52 return constUnwrap<HTMLFormControlElement>()->isReadOnly();
57 return constUnwrap<HTMLFormControlElement>()->name();
62 return constUnwrap<HTMLFormControlElement>()->type();
67 unwrap<HTMLFormControlElement>()->dispatchFormControlChangeEvent();
72 return constUnwrap<HTMLFormControlElement>()->isAutofilled();
77 unwrap<HTMLFormControlElement>()->setAutofilled(autofilled);
82 return constUnwrap<HTMLFormControlElement>()->nameForAutofill();
173 if (RenderStyle* style = constUnwrap<HTMLFormControlElement>()
[all...]

Completed in 95 milliseconds