summaryrefslogtreecommitdiff
path: root/Tools/TestWebKitAPI/Tests/WebKit2/getUserMedia.html
blob: e54f853bf935fcb4f59740c1029a531f132cedc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script>
function gotUserMedia(mediaStream)
{
    console.log("Got user media");
}

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

var options = { audio: false, video: true};
navigator.webkitGetUserMedia(options, gotUserMedia, userMediaError);
</script>