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
fuchsia_web / webengine / test / data / mic.html [blame]
<script>
let getUserMediaError = null;
function callGetUserMedia(haveAccess) {
return navigator.mediaDevices.getUserMedia({ audio: true, video: false })
.then(() => {
if (!haveAccess) {
throw "getUserMedia() succeeded when the page doesn't have " +
"microphone access";
}
})
.catch((e) => {
getUserMediaError = e.name;
});
}
function callEnumerateDevices(haveAccess) {
return navigator.mediaDevices.enumerateDevices().then((devices)=>{
var found = false;
for (d of devices) {
if (d.kind == "audioinput") {
found = true;
if (d.deviceId == "" && haveAccess) {
throw "deviceId must not be empty when mic permission is granted.";
} else if (d.deviceId != "" && !haveAccess) {
throw "deviceId must be non-empty only when mic permission is granted.";
}
if (d.label != "" && !haveAccess) {
throw "device label must be empty unless mic permission is granted.";
}
// TODO(crbug.com/40124154): Verify that d.label is set when microphone
// permission is granted.
}
}
if (!found) {
throw "enumerateDevices() didn't return any audioinput devices.";
}
});
}
// NoPermission is passed in the URL when the page doesn't have microphone
// access.
var haveAccess = (window.location.href.indexOf("NoPermission") < 0);
callGetUserMedia(haveAccess)
.then(() => { return callEnumerateDevices(haveAccess); })
.then(() => {
var title = "ended";
if (getUserMediaError)
title += "-" + getUserMediaError;
document.title = title;
if (window.parent) {
window.parent.postMessage({title: document.title}, "*");
}
});
</script>