Searched defs:unhandledInvalidControls (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFormControlElement.cpp470 bool HTMLFormControlElement::checkValidity(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls) argument
478 if (needsDefaultAction && unhandledInvalidControls && inDocument() && originalDocument == document())
479 unhandledInvalidControls->append(this);
H A DHTMLFormElement.cpp282 WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> > unhandledInvalidControls; local
283 if (!checkInvalidControlsAndCollectUnhandled(&unhandledInvalidControls))
294 for (unsigned i = 0; i < unhandledInvalidControls.size(); ++i) {
295 FormAssociatedElement* unhandledAssociatedElement = unhandledInvalidControls[i].get();
307 for (unsigned i = 0; i < unhandledInvalidControls.size(); ++i) {
308 FormAssociatedElement* unhandledAssociatedElement = unhandledInvalidControls[i].get();
724 bool HTMLFormElement::checkInvalidControlsAndCollectUnhandled(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls) argument
738 if (!control->checkValidity(unhandledInvalidControls) && control->formOwner() == this)

Completed in 145 milliseconds