blob: 000f5309c60fcc6467265b3285f625ea8d60c9bd [file] [log] [blame]
Torne (Richard Coles)5c87bf82012-11-14 11:46:17 +00001<html>
2<head>
3<meta http-equiv="refresh" content="2"/>
4
5<script>
6function error() {
7}
8
9function getUserMedia(dictionary, callback) {
10 try {
11 navigator.webkitGetUserMedia(dictionary, callback, error);
12 } catch (e) {
13 }
14}
15
16function gotStream1(s) {
17}
18
19function start() {
20 getUserMedia({audio:true}, gotStream1);
21}
22</script>
23
24</head>
25<body onload="start()">
26<h1>Test passes if it does not crash.</h1>
27</body>
28</html>