mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-11 15:48:29 +00:00
17 lines
412 B
JavaScript
17 lines
412 B
JavaScript
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);
|
|
});
|