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 282 WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> > unhandledInvalidControls;
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)
738 if (!control->checkValidity(unhandledInvalidControls) && control->formOwner() == this)
HTMLFormControlElement.cpp 470 bool HTMLFormControlElement::checkValidity(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls)
478 if (needsDefaultAction && unhandledInvalidControls && inDocument() && originalDocument == document())
479 unhandledInvalidControls->append(this);
HTMLFormControlElement.h 93 bool checkValidity(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls = 0);

Completed in 31 milliseconds