summaryrefslogtreecommitdiffstats
path: root/dom/media/tests/mochitest/test_peerConnection_bug1227781.html
blob: 17a7c11069899969252f21a1c178f98c7292f894 (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
<!DOCTYPE HTML>
<html>
<head>
  <script type="application/javascript" src="pc.js"></script>
</head>
<body>
<pre id="test">
<script type="application/javascript">
  createHTML({
    bug: "1227781",
    title: "Test with invalid TURN server"
  });

  var turnConfig = { iceServers: [{"username":"mozilla","credential"
                                   :"mozilla","url":"turn:test@10.0.0.1"}] };
  var test;
  runNetworkTest(function (options) {
    var exception = false;

    try {
      pc = new RTCPeerConnection(turnConfig);
    } catch (e) {
      info(e);
      exception = true;
    }
    is(exception, true, "Exception fired");
    ok("Success");
    SimpleTest.finish();
  });
</script>
</pre>
</body>
</html>