blob: ef4f4929644808af45a1f1be453777ed6b777fb6 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<!doctype html>
<title>Test promises from MediaDevices methods in a discarded browsing
context</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script src=/resources/testdriver.js></script>
<script src=/resources/testdriver-vendor.js></script>
<script src=permission-helper.js></script>
<body></body>
<script>
let devices;
let child_DOMException;
setup(() => {
const frame = document.createElement('iframe');
document.body.appendChild(frame);
devices = frame.contentWindow.navigator.mediaDevices;
child_DOMException = frame.contentWindow.DOMException;
frame.remove();
});
// https://w3c.github.io/mediacapture-main/#dom-mediadevices-getusermedia
// If the current settings object's responsible document is NOT fully active,
// return a promise rejected with a DOMException object whose name attribute
// has the value "InvalidStateError".
promise_test(async () => {
await setMediaPermission("granted", ["microphone"]);
// `catch()` is used rather than static Promise methods because microtasks
// for `PromiseResolve()` do not run when Promises in inactive Documents are
// involved. Whether microtasks for `catch()` run depends on the realm of
// the handler rather than the realm of the Promise.
// See https://github.com/whatwg/html/issues/5319.
let promise_already_rejected = false;
let rejected_reason;
devices.getUserMedia({audio:true}).catch(reason => {
promise_already_rejected = true;
rejected_reason = reason;
});
// Race a settled promise to check that the returned promise is already
// rejected.
await Promise.reject().catch(() => {
assert_true(promise_already_rejected,
'should have returned an already-rejected promise.');
assert_throws_dom('InvalidStateError', child_DOMException,
() => { throw rejected_reason });
});
}, 'getUserMedia() in a discarded browsing context');
// https://w3c.github.io/mediacapture-main/#dom-mediadevices-enumeratedevices
// https://w3c.github.io/mediacapture-main/#device-enumeration-can-proceed
// Device enumeration can proceed steps return false when device enumeration
// can be exposed is true and the document is not fully active.
promise_test(async () => {
let promise_state = 'pending';
// `then()` is used to avoid methods that apply `PromiseResolve()` to
// Promises from inactive realms, which would lead to microtasks that don't
// run.
devices.enumerateDevices().then(() => promise_state = 'resolved',
() => promise_state = 'rejected');
// Enumerate in the parent document to provide enough time to check that the
// Promise from the inactive document does not settle.
await navigator.mediaDevices.enumerateDevices();
assert_equals(promise_state, 'pending', 'Promise state');
}, 'enumerateDevices() in a discarded browsing context');
</script>
|