RESOLVED FIXED 144072
Volume slider appears/doesn't appear at the wrong times
https://bugs.webkit.org/show_bug.cgi?id=144072
Summary Volume slider appears/doesn't appear at the wrong times
Roger Fong
Reported 2015-04-22 15:48:07 PDT
rdar://problem/20576145 2 things here: a) set pointer-events: none of background divs for volume slider so the box doesn't appear randomly b) call drawVolumeBackground on the over event for the mute box.
Attachments
patch (2.86 KB, patch)
2015-04-22 16:00 PDT, Roger Fong
dino: review+
Roger Fong
Comment 1 2015-04-22 16:00:30 PDT
Roger Fong
Comment 2 2015-04-22 18:35:59 PDT
Note that the slider drew for <video> elements before because we drew it as a result of calling showControls(). However, we don't call showControls() for <audio> elements because the controls are always visible anyways.
Dean Jackson
Comment 3 2015-04-22 18:48:32 PDT
Comment on attachment 251375 [details] patch View in context: https://bugs.webkit.org/attachment.cgi?id=251375&action=review > Source/WebCore/ChangeLog:12 > + Don't allow mouse interaction with the background divs. > + * Modules/mediacontrols/mediaControlsApple.css: > + (audio::-webkit-media-controls-volume-slider-container-background): > + (audio::-webkit-media-controls-volume-slider-container-tint): I'm not sure why you needed to do this. As long as the backgrounds are behind the controls, wouldn't the control get the event?
Roger Fong
Comment 4 2015-04-22 18:53:48 PDT
(In reply to comment #3) > Comment on attachment 251375 [details] > patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=251375&action=review > > > Source/WebCore/ChangeLog:12 > > + Don't allow mouse interaction with the background divs. > > + * Modules/mediacontrols/mediaControlsApple.css: > > + (audio::-webkit-media-controls-volume-slider-container-background): > > + (audio::-webkit-media-controls-volume-slider-container-tint): > > I'm not sure why you needed to do this. As long as the backgrounds are > behind the controls, wouldn't the control get the event? In this situation, when the volume box is hidden, the controls have a width of 0, so the background, while hidden, are above the controls. Maybe a better way to do this is to make the widths of the background divs 0 as well while hidden.
Roger Fong
Comment 5 2015-04-22 21:43:13 PDT
Note You need to log in before you can comment on or make changes to this bug.