blob: 8e26fc44a857dce13ce7e24cb1b3e656af7f827c (
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
27
28
29
30
31
32
|
<!DOCTYPE html>
<meta charset=utf-8>
<body>
<script src="/resources/testharness.js"
type="text/javascript{{GET[in-iframe]}}"></script>
<script src="/resources/testharnessreport.js"
type="text/javascript{{GET[in-iframe]}}"></script>
<script src="/common/get-host-info.sub.js"></script>
<script src="/permissions-policy/resources/permissions-policy.js"></script>
<script>
'use strict';
async function testSetSinkId() {
const audio = new Audio();
const p = audio.setSinkId('');
// Race a settled promise to check that the returned promise is already
// settled.
return Promise.race([
p,
Promise.reject(Error('setSinkId() promise not already settled')),
]);
}
const cross_domain = get_host_info().HTTPS_REMOTE_ORIGIN;
run_all_fp_tests_allow_self(
cross_domain,
'speaker-selection',
'NotAllowedError',
testSetSinkId
);
</script>
</body>
|