Home
last modified time | relevance | path

Searched refs:unhandledInvalidControls (Results 1 – 3 of 3) sorted by relevance

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