Chromium Code Reviews| Index: Source/core/html/HTMLInputElement.cpp |
| diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp |
| index 5d9b56ce74408ae5f8becae7c8b3cc747c925f01..9d33596048351da1130749f05788b9dab1409a0e 100644 |
| --- a/Source/core/html/HTMLInputElement.cpp |
| +++ b/Source/core/html/HTMLInputElement.cpp |
| @@ -1492,6 +1492,7 @@ void HTMLInputElement::selectColorInColorChooser(const Color& color) |
| if (!m_inputType->isColorControl()) |
| return; |
| static_cast<ColorInputType*>(m_inputType.get())->didChooseColor(color); |
| + static_cast<ColorInputType*>(m_inputType.get())->didEndChooser(); |
|
keishi
2014/09/09 11:55:51
You could add a separate method like Internals::en
Habib Virji
2014/09/10 16:30:54
Done.
|
| } |
| HTMLElement* HTMLInputElement::list() const |