forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D4563 --HG-- extra : source : 390737876a61c5da48a1957d284d3c315fbd541a extra : intermediate-source : f0b190c1cfb5d2df482f1051bbc0ff98de71235b
84 lines
2.6 KiB
JavaScript
84 lines
2.6 KiB
JavaScript
const PAGE = "https://example.com/browser/toolkit/content/tests/browser/file_nonAutoplayAudio.html";
|
|
|
|
var SuspendedType = {
|
|
NONE_SUSPENDED: 0,
|
|
SUSPENDED_PAUSE: 1,
|
|
SUSPENDED_BLOCK: 2,
|
|
SUSPENDED_PAUSE_DISPOSABLE: 3,
|
|
};
|
|
|
|
function check_audio_suspended(suspendedType) {
|
|
var audio = content.document.getElementById("testAudio");
|
|
if (!audio) {
|
|
ok(false, "Can't get the audio element!");
|
|
}
|
|
|
|
is(audio.computedSuspended, suspendedType,
|
|
"The suspeded state of audio is correct.");
|
|
}
|
|
|
|
function check_audio_pause_state(expectPause) {
|
|
var audio = content.document.getElementById("testAudio");
|
|
if (!audio) {
|
|
ok(false, "Can't get the audio element!");
|
|
}
|
|
|
|
is(audio.paused, expectPause,
|
|
"The pause state of audio is corret.");
|
|
}
|
|
|
|
function play_audio() {
|
|
var audio = content.document.getElementById("testAudio");
|
|
if (!audio) {
|
|
ok(false, "Can't get the audio element!");
|
|
}
|
|
|
|
audio.play();
|
|
return new Promise(resolve => {
|
|
audio.onplay = function() {
|
|
audio.onplay = null;
|
|
ok(true, "Audio starts playing.");
|
|
resolve();
|
|
};
|
|
});
|
|
}
|
|
|
|
add_task(async function setup_test_preference() {
|
|
await SpecialPowers.pushPrefEnv({"set": [
|
|
["media.useAudioChannelService.testing", true],
|
|
["media.block-autoplay-until-in-foreground", true],
|
|
]});
|
|
});
|
|
|
|
|
|
/**
|
|
* This test is used for testing the visible tab which was not resumed yet.
|
|
* If the tab doesn't have any media component, it won't be resumed even it
|
|
* has already gone to foreground until we start audio.
|
|
*/
|
|
add_task(async function media_should_be_able_to_play_in_visible_tab() {
|
|
info("- open new background tab, and check tab's media pause state -");
|
|
let tab = BrowserTestUtils.addTab(window.gBrowser, "about:blank");
|
|
BrowserTestUtils.loadURI(tab.linkedBrowser, PAGE);
|
|
await BrowserTestUtils.browserLoaded(tab.linkedBrowser);
|
|
await ContentTask.spawn(tab.linkedBrowser, true,
|
|
check_audio_pause_state);
|
|
|
|
info("- select tab as foreground tab, and tab's media should still be paused -");
|
|
await BrowserTestUtils.switchTab(window.gBrowser, tab);
|
|
await ContentTask.spawn(tab.linkedBrowser, true,
|
|
check_audio_pause_state);
|
|
|
|
info("- start audio in tab -");
|
|
await ContentTask.spawn(tab.linkedBrowser, null,
|
|
play_audio);
|
|
|
|
info("- audio should be playing -");
|
|
await ContentTask.spawn(tab.linkedBrowser, false,
|
|
check_audio_pause_state);
|
|
await ContentTask.spawn(tab.linkedBrowser, SuspendedType.NONE_SUSPENDED,
|
|
check_audio_suspended);
|
|
|
|
info("- remove tab -");
|
|
BrowserTestUtils.removeTab(tab);
|
|
});
|