summaryrefslogtreecommitdiff
path: root/Tools/TestWebKitAPI/Tests/WebKit2/enumerateMediaDevices.html
blob: ffde3ced5924648af0901c0da8edbff3c83c1a0a (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
<html>
    <head>
        <script>
            function enumerate(devices)
            {
                console.log("enumerateDevices succeeded");
            }

            function userMediaError(error)
            {
                console.log(error);
            }

            function test()
            {
                navigator.mediaDevices.enumerateDevices()
                    .then(enumerate)
                    .catch(userMediaError);
            }
        </script>
    </head>
    <body onload="test()">
    </body>
</html>