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

/external/webkit/Source/WebCore/html/
H A DHTMLFormElement.cpp223 Vector<RefPtr<FormAssociatedElement> > unhandledInvalidControls; local
224 if (!checkInvalidControlsAndCollectUnhandled(unhandledInvalidControls))
235 for (unsigned i = 0; i < unhandledInvalidControls.size(); ++i) {
236 FormAssociatedElement* unhandledAssociatedElement = unhandledInvalidControls[i].get();
248 for (unsigned i = 0; i < unhandledInvalidControls.size(); ++i) {
249 FormAssociatedElement* unhandledAssociatedElement = unhandledInvalidControls[i].get();
587 bool HTMLFormElement::checkInvalidControlsAndCollectUnhandled(Vector<RefPtr<FormAssociatedElement> >& unhandledInvalidControls)
600 if (!control->checkValidity(&unhandledInvalidControls) && control->form() == this)
H A DHTMLFormControlElement.cpp398 bool HTMLFormControlElement::checkValidity(Vector<RefPtr<FormAssociatedElement> >* unhandledInvalidControls) argument
406 if (needsDefaultAction && unhandledInvalidControls && inDocument() && originalDocument == document())
407 unhandledInvalidControls->append(this);

Completed in 67 milliseconds