blob: 8da6c9754e120ab7c6394cbb2866a55bfaac3b41 (
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
|
<!doctype html>
<html>
<head>
<title>Invalid facingMode in getUserMedia</title>
<link rel="help" href="https://w3c.github.io/mediacapture-main/#def-constraint-facingMode">
</head>
<body>
<h1 class="instructions">Description</h1>
<p class="instructions">This test checks that trying to set an empty facingMode
value in getUserMedia results in an OverconstrainedError.
</p>
<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>
<script>
promise_test(async () => {
await setMediaPermission("granted", ["camera"]);
try {
await navigator.mediaDevices.getUserMedia({video: {facingMode: {exact: ''}}});
assert_unreached("The empty string is not a valid facingMode");
} catch (error) {
assert_equals(error.name, "OverconstrainedError");
assert_equals(error.constraint, "facingMode");
};
}, "Tests that setting an invalid facingMode constraint in getUserMedia fails");
</script>
</body>
</html>
|