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

Unified Diff: third_party/WebKit/Source/core/html/HTMLInputElement.cpp

Issue 2093383002: Implement disabledAttributeChanged() in HTMLInputElement. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 | « third_party/WebKit/Source/core/html/HTMLInputElement.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
index 1e3cf9fb3148968f90afeaf2ccecffffa97941c8..d9ef1fa757ab482c7d82ed9ee7e0bb931b2ce04c 100644
--- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
@@ -1533,6 +1533,12 @@ void HTMLInputElement::requiredAttributeChanged()
m_inputTypeView->requiredAttributeChanged();
}
+void HTMLInputElement::disabledAttributeChanged()
+{
+ HTMLFormControlElement::disabledAttributeChanged();
tkent 2016/06/27 03:17:30 Please specify nearest parent class, HTMLTextFormC
+ m_inputTypeView->disabledAttributeChanged();
+}
+
tkent 2016/06/27 03:17:30 I think we can remove the block for disabledAttr i
void HTMLInputElement::selectColorInColorChooser(const Color& color)
{
if (ColorChooserClient* client = m_inputType->colorChooserClient())
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLInputElement.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698