diff --git a/dom/base/test/mochitest.ini b/dom/base/test/mochitest.ini index 686157158b38..a0bae4613277 100644 --- a/dom/base/test/mochitest.ini +++ b/dom/base/test/mochitest.ini @@ -269,8 +269,6 @@ support-files = [test_audioWindowUtils.html] [test_audioNotification.html] skip-if = buildapp == 'mulet' -[test_audioNotificationStream.html] -skip-if = buildapp == 'mulet' [test_audioNotificationStopOnNavigation.html] skip-if = buildapp == 'mulet' [test_audioNotificationWithEarlyPlay.html] diff --git a/dom/base/test/test_audioNotificationStream.html b/dom/base/test/test_audioNotificationStream.html deleted file mode 100644 index adb513a7c78e..000000000000 --- a/dom/base/test/test_audioNotificationStream.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - Test for audio controller in windows - - - - -
-
- - - - - diff --git a/dom/html/HTMLMediaElement.cpp b/dom/html/HTMLMediaElement.cpp index 3ac7988a11aa..572c0b8cf8d2 100644 --- a/dom/html/HTMLMediaElement.cpp +++ b/dom/html/HTMLMediaElement.cpp @@ -4730,8 +4730,7 @@ HTMLMediaElement::UpdateAudioChannelPlayingState() (HasAttr(kNameSpaceID_None, nsGkAtoms::loop) || (mReadyState >= nsIDOMHTMLMediaElement::HAVE_CURRENT_DATA && !IsPlaybackEnded()) || - mPlayingThroughTheAudioChannelBeforeSeek || - mSrcAttrStream)); + mPlayingThroughTheAudioChannelBeforeSeek)); if (playingThroughTheAudioChannel != mPlayingThroughTheAudioChannel) { mPlayingThroughTheAudioChannel = playingThroughTheAudioChannel;