summaryrefslogtreecommitdiffstats
path: root/toolkit/content/tests/browser/browser_mute.js
blob: f4829b8082d52aac1e1c41abecaaf4bf8fc6504e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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");
  browser.unmute();
  ok(!browser.audioMuted, "Audio should be unmuted now");
}

add_task(function*() {
  yield BrowserTestUtils.withNewTab({
    gBrowser,
    url: PAGE,
  }, test_on_browser);
});