HomeSort by relevance Sort by last modified time
    Searched defs:HTMLFormControlElement (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/web/
WebFormControlElement.cpp 34 #include "core/html/HTMLFormControlElement.h"
44 return !constUnwrap<HTMLFormControlElement>()->isDisabledFormControl();
49 return constUnwrap<HTMLFormControlElement>()->isReadOnly();
54 return constUnwrap<HTMLFormControlElement>()->name();
59 return constUnwrap<HTMLFormControlElement>()->type();
64 unwrap<HTMLFormControlElement>()->dispatchFormControlChangeEvent();
69 return constUnwrap<HTMLFormControlElement>()->isAutofilled();
74 unwrap<HTMLFormControlElement>()->setAutofilled(autofilled);
79 return constUnwrap<HTMLFormControlElement>()->nameForAutofill();
84 return WebFormElement(constUnwrap<HTMLFormControlElement>()->form())
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlElement.h 39 // HTMLFormControlElement is the default implementation of FormAssociatedElement,
40 // and form-associated element implementations should use HTMLFormControlElement
42 class HTMLFormControlElement : public LabelableElement, public FormAssociatedElement {
44 virtual ~HTMLFormControlElement();
109 static HTMLFormControlElement* enclosingFormControlElement(Node*);
117 HTMLFormControlElement(const QualifiedName& tagName, Document&, HTMLFormElement*);
188 DEFINE_NODE_TYPE_CASTS_WITH_FUNCTION(HTMLFormControlElement);
189 DEFINE_TYPE_CASTS(HTMLFormControlElement, FormAssociatedElement, control, control->isFormControlElement(), control.isFormControlElement());
HTMLFormControlElement.cpp 26 #include "core/html/HTMLFormControlElement.h"
48 HTMLFormControlElement::HTMLFormControlElement(const QualifiedName& tagName, Document& document, HTMLFormElement* form)
68 HTMLFormControlElement::~HTMLFormControlElement()
73 String HTMLFormControlElement::formEnctype() const
81 void HTMLFormControlElement::setFormEnctype(const AtomicString& value)
86 String HTMLFormControlElement::formMethod() const
94 void HTMLFormControlElement::setFormMethod(const AtomicString& value)
99 bool HTMLFormControlElement::formNoValidate() cons
    [all...]

Completed in 472 milliseconds