Chromium Code Reviews| 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()) |