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
|
const PAGE = GetTestWebBasedURL("file_mediaPlayback.html");
const FRAME = GetTestWebBasedURL("file_mediaPlaybackFrame.html");
function wait_for_event(browser, event) {
return BrowserTestUtils.waitForEvent(browser, event, false, e => {
is(
e.originalTarget,
browser,
"Event must be dispatched to correct browser."
);
ok(!e.cancelable, "The event should not be cancelable");
return true;
});
}
async function test_on_browser(url, browser) {
info(`run test for ${url}`);
const startPromise = wait_for_event(browser, "DOMAudioPlaybackStarted");
BrowserTestUtils.loadURI(browser, url);
await startPromise;
await wait_for_event(browser, "DOMAudioPlaybackStopped");
}
add_task(async function test_page() {
await BrowserTestUtils.withNewTab(
{
gBrowser,
url: "about:blank",
},
test_on_browser.bind(undefined, PAGE)
);
});
add_task(async function test_frame() {
await BrowserTestUtils.withNewTab(
{
gBrowser,
url: "about:blank",
},
test_on_browser.bind(undefined, FRAME)
);
});
|