summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_peerConnection_restrictBandwidthTargetBitrate.html
blob: ff9fb1fc224bb2a21605bc1cd88c9a1265087f85 (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
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "Bug 1404250",
    title: "Extremely bitrate restricted video-only peer connection"
  });

  runNetworkTest(function (options) {
    const test = new PeerConnectionTest(options);
    test.setMediaConstraints([{video: true}], [{video: true}]);
    test.chain.insertAfter('PC_REMOTE_GET_OFFER', [
      function PC_REMOTE_ADD_TIAS(test) {
        test._local_offer.sdp = sdputils.addTiasBps(
          test._local_offer.sdp, 25000);
        info("Offer with TIAS: " + JSON.stringify(test._local_offer));
      }
    ]);
    return test.run();
  });
</script>
</pre>
</body>
</html>