blob: c69f5d418432b1ef4822280983666fb98e5e1861 (
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
|
<!DOCTYPE HTML>
<html>
<head>
<script type="application/javascript" src="mediaStreamPlayback.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
createHTML({ title: "getUserMedia Basic Audio Test", bug: "781534" });
/**
* Run a test to verify that we can complete a start and stop media playback
* cycle for an audio LocalMediaStream on an audio HTMLMediaElement.
*/
runTest(function () {
var testAudio = createMediaElement('audio', 'testAudio');
var constraints = {audio: true};
return getUserMedia(constraints).then(stream => {
var playback = new LocalMediaStreamPlayback(testAudio, stream);
return playback.playMedia(false);
});
});
</script>
</pre>
</body>
</html>
|