summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_peerConnection_offerRequiresReceiveAudio.html
blob: 1f936714f13e57eb7708b22db097064ea2c222fb (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 audio"
  });

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