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

  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormElement.cpp 219 Vector<RefPtr<FormAssociatedElement> > unhandledInvalidControls;
220 if (!checkInvalidControlsAndCollectUnhandled(&unhandledInvalidControls))
231 for (unsigned i = 0; i < unhandledInvalidControls.size(); ++i) {
232 FormAssociatedElement* unhandledAssociatedElement = unhandledInvalidControls[i].get();
244 for (unsigned i = 0; i < unhandledInvalidControls.size(); ++i) {
245 FormAssociatedElement* unhandledAssociatedElement = unhandledInvalidControls[i].get();
641 bool HTMLFormElement::checkInvalidControlsAndCollectUnhandled(Vector<RefPtr<FormAssociatedElement> >* unhandledInvalidControls, HTMLFormControlElement::CheckValidityDispatchEvents dispatchEvents)
654 if (!control->checkValidity(unhandledInvalidControls, dispatchEvents) && control->form() == this)
HTMLFormControlElement.cpp 432 bool HTMLFormControlElement::checkValidity(Vector<RefPtr<FormAssociatedElement> >* unhandledInvalidControls, CheckValidityDispatchEvents dispatchEvents)
446 if (needsDefaultAction && unhandledInvalidControls && inDocument() && originalDocument == document())
447 unhandledInvalidControls->append(this);
HTMLFormControlElement.h 92 bool checkValidity(Vector<RefPtr<FormAssociatedElement> >* unhandledInvalidControls = 0, CheckValidityDispatchEvents = CheckValidityDispatchEventsAllowed);

Completed in 927 milliseconds