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

Unified Diff: Source/WebKit/chromium/src/WebFormElement.cpp

Issue 17076013: Implementing blink side of 'invalid' AutocompleteErrorEvent#reason (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: . Created 7 years, 6 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 | « no previous file | Source/core/html/HTMLFormControlElement.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/WebFormElement.cpp
diff --git a/Source/WebKit/chromium/src/WebFormElement.cpp b/Source/WebKit/chromium/src/WebFormElement.cpp
index 4362b2f115c1b434db09ca09528057c48d8c8564..4f5564d00bb681a3fa42764ed6e9fce04e24868a 100644
--- a/Source/WebKit/chromium/src/WebFormElement.cpp
+++ b/Source/WebKit/chromium/src/WebFormElement.cpp
@@ -102,6 +102,11 @@ void WebFormElement::getFormControlElements(WebVector<WebFormControlElement>& re
result.assign(tempVector);
}
+bool WebFormElement::checkValidityWithoutDispatchingEvents()
+{
+ return unwrap<HTMLFormElement>()->checkValidityWithoutDispatchingEvents();
+}
+
void WebFormElement::finishRequestAutocomplete(WebFormElement::AutocompleteResult result)
{
unwrap<HTMLFormElement>()->finishRequestAutocomplete(static_cast<HTMLFormElement::AutocompleteResult>(result));
« no previous file with comments | « no previous file | Source/core/html/HTMLFormControlElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698