| Index: Source/core/html/HTMLSelectElement.cpp
|
| diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp
|
| index 2e97a68ace2e14179db1e145afa0c63c39e2d66a..8add2a060378e1989ce65962f2f5908f69d97553 100644
|
| --- a/Source/core/html/HTMLSelectElement.cpp
|
| +++ b/Source/core/html/HTMLSelectElement.cpp
|
| @@ -319,11 +319,9 @@ bool HTMLSelectElement::isKeyboardFocusable(KeyboardEvent* event) const
|
| return HTMLFormControlElementWithState::isKeyboardFocusable(event);
|
| }
|
|
|
| -bool HTMLSelectElement::isMouseFocusable() const
|
| +bool HTMLSelectElement::shouldShowFocusRingOnMouseFocus() const
|
| {
|
| - if (renderer())
|
| - return isFocusable();
|
| - return HTMLFormControlElementWithState::isMouseFocusable();
|
| + return true;
|
| }
|
|
|
| bool HTMLSelectElement::canSelectAll() const
|
|
|