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

  /external/webkit/Source/WebCore/html/
HTMLFormElement.cpp 223 Vector<RefPtr<FormAssociatedElement> > unhandledInvalidControls;
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)
HTMLFormControlElement.h 94 bool checkValidity(Vector<RefPtr<FormAssociatedElement> >* unhandledInvalidControls = 0);
HTMLFormControlElement.cpp 398 bool HTMLFormControlElement::checkValidity(Vector<RefPtr<FormAssociatedElement> >* unhandledInvalidControls)
406 if (needsDefaultAction && unhandledInvalidControls && inDocument() && originalDocument == document())
407 unhandledInvalidControls->append(this);

Completed in 521 milliseconds