| Index: Source/core/html/HTMLSelectElement.cpp
|
| diff --git a/Source/core/html/HTMLSelectElement.cpp b/Source/core/html/HTMLSelectElement.cpp
|
| index 7d8288dc8b5892f37ffa805a17f95fc2f996a410..c11be6bb0308b00a106a7d5511caef8d0dec70b3 100644
|
| --- a/Source/core/html/HTMLSelectElement.cpp
|
| +++ b/Source/core/html/HTMLSelectElement.cpp
|
| @@ -322,11 +322,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
|
|
|