summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_peerConnection_offerRequiresReceiveVideoAudio.html
blob: ec80079716766884bf8a79f36e40bc88c1169a05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "850275",
    title: "Simple offer media constraint test with video/audio"
  });

  runNetworkTest(function() {
    var test = new PeerConnectionTest();
    test.setMediaConstraints([], [{audio: true, video: true}]);
    test.setOfferOptions({ offerToReceiveVideo: true, offerToReceiveAudio: true });
    test.run();
  });
</script>
</pre>
</body>
</html>