Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(867)

Unified Diff: Source/core/html/HTMLFormElement.cpp

Issue 658063002: Fix the issue where checking a form for :valid/:invalid would trigger invalid events for its elemen… (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Pull + small style fixes Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/HTMLFormElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLFormElement.cpp
diff --git a/Source/core/html/HTMLFormElement.cpp b/Source/core/html/HTMLFormElement.cpp
index 880b9adeb8a9de71c2e87bc0b52c31361df87af0..7ed66919d22e1b9fc40f8220996a6acb1d44df7c 100644
--- a/Source/core/html/HTMLFormElement.cpp
+++ b/Source/core/html/HTMLFormElement.cpp
@@ -116,7 +116,7 @@ bool HTMLFormElement::matchesValidityPseudoClasses() const
bool HTMLFormElement::isValidElement()
{
- return checkValidity();
+ return !checkInvalidControlsAndCollectUnhandled(0, CheckValidityDispatchNoEvent);
}
bool HTMLFormElement::rendererIsNeeded(const RenderStyle& style)
@@ -290,7 +290,7 @@ bool HTMLFormElement::validateInteractively(Event* event)
}
WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> > unhandledInvalidControls;
- if (!checkInvalidControlsAndCollectUnhandled(&unhandledInvalidControls))
+ if (!checkInvalidControlsAndCollectUnhandled(&unhandledInvalidControls, CheckValidityDispatchInvalidEvent))
return true;
// Because the form has invalid controls, we abort the form submission and
// show a validation message on a focusable form control.
@@ -733,10 +733,10 @@ void HTMLFormElement::setNeedsValidityCheck()
bool HTMLFormElement::checkValidity()
{
- return !checkInvalidControlsAndCollectUnhandled(0);
+ return !checkInvalidControlsAndCollectUnhandled(0, CheckValidityDispatchInvalidEvent);
}
-bool HTMLFormElement::checkInvalidControlsAndCollectUnhandled(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls)
+bool HTMLFormElement::checkInvalidControlsAndCollectUnhandled(WillBeHeapVector<RefPtrWillBeMember<FormAssociatedElement> >* unhandledInvalidControls, CheckValidityEventBehavior eventBehavior)
{
RefPtrWillBeRawPtr<HTMLFormElement> protector(this);
// Copy associatedElements because event handlers called from
@@ -750,7 +750,7 @@ bool HTMLFormElement::checkInvalidControlsAndCollectUnhandled(WillBeHeapVector<R
for (unsigned i = 0; i < elements.size(); ++i) {
if (elements[i]->form() == this && elements[i]->isFormControlElement()) {
HTMLFormControlElement* control = toHTMLFormControlElement(elements[i].get());
- if (!control->checkValidity(unhandledInvalidControls) && control->formOwner() == this)
+ if (!control->checkValidity(unhandledInvalidControls, eventBehavior) && control->formOwner() == this)
hasInvalidControls = true;
}
}
« no previous file with comments | « Source/core/html/HTMLFormElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698