blob: 38f415b71b9ad26e561d421d8bd1d98a1dab0363 (
plain)
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
|
const PAGE = "data:text/html,page";
function* test_on_browser(browser) {
ok(!browser.audioMuted, "Audio should not be muted by default");
browser.mute();
ok(browser.audioMuted, "Audio should be muted now");
yield BrowserTestUtils.withNewTab({
gBrowser,
url: PAGE,
}, test_on_browser2);
browser.unmute();
ok(!browser.audioMuted, "Audio should be unmuted now");
}
function* test_on_browser2(browser) {
ok(!browser.audioMuted, "Audio should not be muted by default");
}
add_task(function*() {
yield BrowserTestUtils.withNewTab({
gBrowser,
url: PAGE,
}, test_on_browser);
});
|