Searched refs:HTMLFormControlElement (Results 1 - 25 of 37) sorted by relevance

12

/external/chromium_org/third_party/WebKit/Source/core/html/
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...]
H A DHTMLLegendElement.h31 class HTMLFormControlElement;
44 HTMLFormControlElement* associatedControl();
H A DHTMLFormControlElementWithState.cpp39 : HTMLFormControlElement(tagName, doc, f)
51 return HTMLFormControlElement::insertedInto(insertionPoint);
58 HTMLFormControlElement::removedFrom(insertionPoint);
90 HTMLFormControlElement::finishParsingChildren();
H A DHTMLLegendElement.cpp31 #include "core/html/HTMLFormControlElement.h"
45 HTMLFormControlElement* HTMLLegendElement::associatedControl()
54 return Traversal<HTMLFormControlElement>::next(*fieldset, fieldset);
63 if (HTMLFormControlElement* control = associatedControl())
69 if (HTMLFormControlElement* control = associatedControl())
H A DHTMLFieldSetElement.cpp43 : HTMLFormControlElement(fieldsetTag, document, form)
58 HTMLFormControlElement::trace(visitor);
63 for (HTMLFormControlElement* element = Traversal<HTMLFormControlElement>::firstWithin(base); element; element = Traversal<HTMLFormControlElement>::next(*element, &base))
70 HTMLFormControlElement::disabledAttributeChanged();
76 HTMLFormControlElement::childrenChanged(change);
H A DHTMLOutputElement.cpp40 : HTMLFormControlElement(HTMLNames::outputTag, document, form)
68 HTMLFormControlElement::parseAttribute(name, value);
83 HTMLFormControlElement::childrenChanged(change);
134 HTMLFormControlElement::trace(visitor);
H A DHTMLButtonElement.cpp43 : HTMLFormControlElement(buttonTag, document, form)
93 return HTMLFormControlElement::isPresentationAttribute(name);
107 HTMLFormControlElement::parseAttribute(name, value);
151 HTMLFormControlElement::defaultEventHandler(event);
158 return HTMLFormControlElement::willRespondToMouseClickEvents();
193 return attribute.name() == formactionAttr || HTMLFormControlElement::isURLAttribute(attribute);
203 return m_type == SUBMIT && HTMLFormControlElement::recalcWillValidate();
229 return HTMLFormControlElement::insertedInto(insertionPoint);
245 HTMLFormControlElement::attributeWillChange(name, oldValue, newValue);
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 DHTMLFieldSetElement.h27 #include "core/html/HTMLFormControlElement.h"
35 class HTMLFieldSetElement FINAL : public HTMLFormControlElement {
H A DHTMLFormControlElementWithState.h27 #include "core/html/HTMLFormControlElement.h"
33 class HTMLFormControlElementWithState : public HTMLFormControlElement {
H A DHTMLOutputElement.h35 #include "core/html/HTMLFormControlElement.h"
39 class HTMLOutputElement FINAL : public HTMLFormControlElement {
H A DHTMLButtonElement.h27 #include "core/html/HTMLFormControlElement.h"
31 class HTMLButtonElement FINAL : public HTMLFormControlElement {
51 // HTMLFormControlElement always creates one, but buttons don't need it.
H A DHTMLFormElement.h28 #include "core/html/HTMLFormControlElement.h"
44 class HTMLFormControlElement;
99 HTMLFormControlElement* defaultButton() const;
H A DHTMLKeygenElement.cpp86 HTMLFormControlElement::parseAttribute(name, value);
H A DHTMLDialogElement.cpp35 #include "core/html/HTMLFormControlElement.h"
59 HTMLFormControlElement* control = toHTMLFormControlElement(node);
H A DHTMLFormElement.cpp237 HTMLFormControlElement* control = toHTMLFormControlElement(formAssociatedElement);
257 static inline HTMLFormControlElement* submitElementFromEvent(const Event* event)
272 HTMLFormControlElement* submitElement = submitElementFromEvent(event);
380 RefPtrWillBeRawPtr<HTMLFormControlElement> firstSuccessfulSubmitButton = nullptr;
389 HTMLFormControlElement* control = toHTMLFormControlElement(associatedElement);
705 HTMLFormControlElement* HTMLFormElement::defaultButton() const
711 HTMLFormControlElement* control = toHTMLFormControlElement(elements[i]);
728 // HTMLFormControlElement::checkValidity() might change associatedElements.
737 HTMLFormControlElement* control = toHTMLFormControlElement(elements[i].get());
/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...]
H A DWebSearchableFormData.cpp38 #include "core/html/HTMLFormControlElement.h"
82 HTMLFormControlElement* GetButtonToActivate(HTMLFormElement* form)
84 HTMLFormControlElement* firstSubmitButton = 0;
89 HTMLFormControlElement* control = toHTMLFormControlElement(*i);
138 bool IsInDefaultState(HTMLFormControlElement* formElement)
165 HTMLFormControlElement* control = toHTMLFormControlElement(*i);
208 HTMLFormControlElement* control = toHTMLFormControlElement(*i);
268 HTMLFormControlElement* firstSubmitButton = GetButtonToActivate(formElement.get());
H A DChromeClientImpl.h51 class HTMLFormControlElement;
171 virtual void didChangeValueInTextField(HTMLFormControlElement&) OVERRIDE;
H A DChromeClientImpl.cpp878 void ChromeClientImpl::didChangeValueInTextField(HTMLFormControlElement& element)
/external/chromium_org/third_party/WebKit/public/web/
H A DWebFormControlElement.h40 class HTMLFormControlElement;
117 WebFormControlElement(const PassRefPtrWillBeRawPtr<HTMLFormControlElement>&);
118 WebFormControlElement& operator=(const PassRefPtrWillBeRawPtr<HTMLFormControlElement>&);
119 operator PassRefPtrWillBeRawPtr<HTMLFormControlElement>() const;
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DChromeClient.h57 class HTMLFormControlElement;
223 virtual void didChangeValueInTextField(HTMLFormControlElement&) { }
/external/chromium_org/third_party/WebKit/Source/core/loader/
H A DFormSubmission.cpp39 #include "core/html/HTMLFormControlElement.h"
168 HTMLFormControlElement* submitButton = 0;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTheme.cpp36 #include "core/html/HTMLFormControlElement.h"
732 HTMLFormControlElement* element = toHTMLFormControlElement(node);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DTextIterator.cpp410 if (!m_shouldStop && m_stopsOnFormControls && HTMLFormControlElement::enclosingFormControlElement(m_node))
1394 if (m_stopsOnFormControls && HTMLFormControlElement::enclosingFormControlElement(m_node)) {

Completed in 306 milliseconds

12