summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_getUserMedia_basicWindowshare.html
blob: 7b27944bdc08717195109db053709a713fb835bb (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
36
37
38
39
<!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 Windowshare Test",
    bug: "1038926"
  });
  /**
   * Run a test to verify that we can complete a start and stop media playback
   * cycle for an screenshare MediaStream on a video HTMLMediaElement.
   */
  runTest(async function () {
    const testVideo = createMediaElement('video', 'testVideo');
    const constraints = {
      video: { mediaSource: "window" },
    };

    try {
      await getUserMedia(constraints);
      ok(false, "Should require user gesture");
    } catch (e) {
      is(e.name, "InvalidStateError");
    }

    SpecialPowers.wrap(document).notifyUserGestureActivation();
    const stream = await getUserMedia(constraints);
    const playback = new MediaStreamPlayback(testVideo, stream);
    return playback.playMedia(false);
  });

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