summaryrefslogtreecommitdiffstats
path: root/dom/media/webrtc/tests/mochitests/test_peerConnection_bug1013809.html
blob: a8c700479311e2972db949f06935a5a231b4c3bc (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
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "1013809",
    title: "Audio-only peer connection with swapped setLocal and setRemote steps"
  });

  var test;
  runNetworkTest(function (options) {
    test = new PeerConnectionTest(options);
    var sld = test.chain.remove("PC_REMOTE_SET_LOCAL_DESCRIPTION");
    test.chain.insertAfter("PC_LOCAL_SET_REMOTE_DESCRIPTION", sld);
    test.setMediaConstraints([{audio: true}], [{audio: true}]);
    return test.run();
  });
</script>
</pre>
</body>
</html>