summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_getUserMedia_basicAudio.html
blob: b4775b4244ee3cfb6276d69d39ea36c83ac28d58 (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 MediaStream on an audio HTMLMediaElement.
   */
  runTest(function () {
    var testAudio = createMediaElement('audio', 'testAudio');
    var constraints = {audio: true};

    return getUserMedia(constraints).then(stream => {
      var playback = new MediaStreamPlayback(testAudio, stream);
      return playback.playMedia(false);
    });
  });

</script>
</pre>
</body>
</html>