| Index: Source/core/html/shadow/MediaControlElementTypes.cpp
|
| diff --git a/Source/core/html/shadow/MediaControlElementTypes.cpp b/Source/core/html/shadow/MediaControlElementTypes.cpp
|
| index 29d161e86f90f23c6331463d6cf2a0ffaccb5ff8..6352638b9f86cbb36ad9cbc20be5b305ed40115a 100644
|
| --- a/Source/core/html/shadow/MediaControlElementTypes.cpp
|
| +++ b/Source/core/html/shadow/MediaControlElementTypes.cpp
|
| @@ -175,7 +175,7 @@ void MediaControlVolumeSliderElement::defaultEventHandler(Event* event)
|
| if (event->isMouseEvent() && toMouseEvent(event)->button())
|
| return;
|
|
|
| - if (!attached())
|
| + if (!confusingAndOftenMisusedAttached())
|
| return;
|
|
|
| MediaControlInputElement::defaultEventHandler(event);
|
| @@ -192,7 +192,7 @@ void MediaControlVolumeSliderElement::defaultEventHandler(Event* event)
|
|
|
| bool MediaControlVolumeSliderElement::willRespondToMouseMoveEvents()
|
| {
|
| - if (!attached())
|
| + if (!confusingAndOftenMisusedAttached())
|
| return false;
|
|
|
| return MediaControlInputElement::willRespondToMouseMoveEvents();
|
| @@ -200,7 +200,7 @@ bool MediaControlVolumeSliderElement::willRespondToMouseMoveEvents()
|
|
|
| bool MediaControlVolumeSliderElement::willRespondToMouseClickEvents()
|
| {
|
| - if (!attached())
|
| + if (!confusingAndOftenMisusedAttached())
|
| return false;
|
|
|
| return MediaControlInputElement::willRespondToMouseClickEvents();
|
|
|