mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1048171 - HTTMLMediaElement should not send an AudioChannel 'stop' event when seeking, r=roc
This commit is contained in:
parent
88a6354eac
commit
cf8e74b87b
@ -3891,7 +3891,8 @@ void HTMLMediaElement::UpdateAudioChannelPlayingState()
|
||||
(!mPaused &&
|
||||
(HasAttr(kNameSpaceID_None, nsGkAtoms::loop) ||
|
||||
(mReadyState >= nsIDOMHTMLMediaElement::HAVE_CURRENT_DATA &&
|
||||
!IsPlaybackEnded())));
|
||||
!IsPlaybackEnded()) ||
|
||||
mPlayingBeforeSeek));
|
||||
if (playingThroughTheAudioChannel != mPlayingThroughTheAudioChannel) {
|
||||
mPlayingThroughTheAudioChannel = playingThroughTheAudioChannel;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user