1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/* eslint-disable mozilla/no-arbitrary-setTimeout */
const PAGE =
"https://example.com/browser/toolkit/content/tests/browser/file_multipleAudio.html";
function check_autoplay_audio_onplay() {
let autoPlay = content.document.getElementById("autoplay");
if (!autoPlay) {
ok(false, "Can't get the audio element!");
}
return new Promise((resolve, reject) => {
autoPlay.onplay = () => {
ok(false, "Should not receive play event!");
this.onplay = null;
reject();
};
autoPlay.pause();
autoPlay.play();
content.setTimeout(() => {
ok(true, "Doesn't receive play event when media was blocked.");
autoPlay.onplay = null;
resolve();
}, 1000);
});
}
function play_nonautoplay_audio_should_be_blocked() {
let nonAutoPlay = content.document.getElementById("nonautoplay");
if (!nonAutoPlay) {
ok(false, "Can't get the audio element!");
}
nonAutoPlay.play();
ok(nonAutoPlay.paused, "The blocked audio can't be playback.");
}
add_task(async function setup_test_preference() {
await SpecialPowers.pushPrefEnv({
set: [
["media.useAudioChannelService.testing", true],
["media.block-autoplay-until-in-foreground", true],
],
});
});
add_task(async function block_multiple_media() {
info("- open new background tab -");
let tab = BrowserTestUtils.addTab(window.gBrowser, "about:blank");
let browser = tab.linkedBrowser;
BrowserTestUtils.loadURIString(browser, PAGE);
await BrowserTestUtils.browserLoaded(browser);
info("- tab should be blocked -");
await waitForTabBlockEvent(tab, true);
info("- autoplay media should be blocked -");
await SpecialPowers.spawn(browser, [], check_autoplay_audio_onplay);
info("- non-autoplay can't start playback when the tab is blocked -");
await SpecialPowers.spawn(
browser,
[],
play_nonautoplay_audio_should_be_blocked
);
info("- select tab as foreground tab -");
await BrowserTestUtils.switchTab(window.gBrowser, tab);
info("- tab should be resumed -");
await waitForTabPlayingEvent(tab, true);
await waitForTabBlockEvent(tab, false);
info("- remove tab -");
BrowserTestUtils.removeTab(tab);
});
|