summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_peerConnection_basicScreenshare.html
blob: 08db1b16130827e3f142754bfe39e89e336d4cc1 (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
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "1039666",
    title: "Basic screenshare-only peer connection"
  });

  var test;
  runNetworkTest(function (options) {
    const isWinXP = navigator.userAgent.indexOf("Windows NT 5.1") != -1;
    if (IsMacOSX10_6orOlder() || isWinXP) {
        ok(true, "Screensharing disabled for OSX10.6 and WinXP");
        SimpleTest.finish();
        return;
    }
    test = new PeerConnectionTest(options);
    var constraints = {
      video: {
         mozMediaSource: "screen",
         mediaSource: "screen"
      },
      fake: false
    };
    test.setMediaConstraints([constraints], [constraints]);
    test.run();
  });
</script>
</pre>
</body>
</html>