mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug 894234 - Guard against audioContext->IsOffline(). r=ehsan
This commit is contained in:
parent
09e5e38a50
commit
07cdd2c80d
@ -3284,7 +3284,7 @@ nsPIDOMWindow::AddAudioContext(AudioContext* aAudioContext)
|
||||
mAudioContexts.AppendElement(aAudioContext);
|
||||
|
||||
nsIDocShell* docShell = GetDocShell();
|
||||
if (docShell && !docShell->GetAllowMedia()) {
|
||||
if (docShell && !docShell->GetAllowMedia() && !aAudioContext->IsOffline()) {
|
||||
aAudioContext->Mute();
|
||||
}
|
||||
}
|
||||
@ -3293,7 +3293,9 @@ void
|
||||
nsPIDOMWindow::MuteAudioContexts()
|
||||
{
|
||||
for (uint32_t i = 0; i < mAudioContexts.Length(); ++i) {
|
||||
mAudioContexts[i]->Mute();
|
||||
if (!mAudioContexts[i]->IsOffline()) {
|
||||
mAudioContexts[i]->Mute();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -3301,7 +3303,9 @@ void
|
||||
nsPIDOMWindow::UnmuteAudioContexts()
|
||||
{
|
||||
for (uint32_t i = 0; i < mAudioContexts.Length(); ++i) {
|
||||
mAudioContexts[i]->Unmute();
|
||||
if (!mAudioContexts[i]->IsOffline()) {
|
||||
mAudioContexts[i]->Unmute();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user