summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_getUserMedia_stopVideoStreamWithFollowupVideo.html
blob: c2c5591ffbca9b018794dcec8d2a3f2ac22a886e (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
28
29
30
31
32
33
34
35
<!DOCTYPE HTML>
<html>
<head>
  <script src="mediaStreamPlayback.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({ title: "getUserMedia Stop Video Stream With Followup Video", bug: "822109" });
  /**
   * Run a test to verify that I can complete an video gum playback in a
   * media element, stop the stream, and then complete another video gum
   * playback in a media element.
   */
  runTest(function () {
    return getUserMedia({video: true})
      .then(stream => {
        var testVideo = createMediaElement('video', 'testVideo');
        var streamPlayback = new LocalMediaStreamPlayback(testVideo, stream);

        return streamPlayback.playMediaWithDeprecatedStreamStop(false)
          .then(() => getUserMedia({video: true}))
          .then(secondStream => {
            streamPlayback.mediaStream = secondStream;

            return streamPlayback.playMedia(false)
              .then(() => secondStream.stop());
          });
      });
  });

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