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

Unified Diff: Source/core/html/HTMLInputElement.h

Issue 672163002: Fix bug where form/fieldset :valid/:invalid won't be recalculated upon control's willValidate change Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Add layout tests to catch the problem 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
Index: Source/core/html/HTMLInputElement.h
diff --git a/Source/core/html/HTMLInputElement.h b/Source/core/html/HTMLInputElement.h
index 5fccef09af19c9d5bfd346d4373ea7bb0b392cc5..fd7fc323dbea03b64d21c855e7a41cbee68d4187 100644
--- a/Source/core/html/HTMLInputElement.h
+++ b/Source/core/html/HTMLInputElement.h
@@ -264,7 +264,7 @@ private:
virtual void willAddFirstAuthorShadowRoot() override final;
virtual void willChangeForm() override final;
- virtual void didChangeForm() override final;
+ virtual void didChangeForm(HTMLFormElement* oldForm) override final;
virtual InsertionNotificationRequest insertedInto(ContainerNode*) override;
virtual void removedFrom(ContainerNode*) override final;
virtual void didMoveToNewDocument(Document& oldDocument) override final;

Powered by Google App Engine
This is Rietveld 408576698