summaryrefslogtreecommitdiffstats
path: root/dom/network/tests/test_tcpsocket_enabled_with_perm.html
blob: 44b85ee3e85f2af32dfaa06e6c5e8af921956d1a (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
34
35
<!DOCTYPE HTML>
<html>
<head>
  <title>Test to ensure TCPSocket permission enabled and open works with tcp-socket perm</title>
  <script type="application/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css"/>
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">

/** Test to ensure TCPSocket permission being turned on enables 
  navigator.mozTCPSocket, and mozTCPSocket.open works when
  the tcp-socket permission has been granted.
**/
SimpleTest.waitForExplicitFinish();
SpecialPowers.pushPrefEnv({"set": [['dom.mozTCPSocket.enabled', true]]}, runTest);

function runTest() {
  ok('TCPSocket' in this, "TCPSocket should be accessible if dom.mozTCPSocket.enabled is true");

  ok(new TCPSocket('localhost', 80), "TCPSocket constructor should work for content that has the tcp-socket permission");
  ok(navigator.mozTCPSocket.open('localhost', 80), "navigator.mozTCPSocket.open should work for content that has the tcp-socket permission");
  // This just helps the test harness clean up quickly
  SpecialPowers.forceCC();
  SpecialPowers.forceGC();
  SimpleTest.finish();
}
</script>
</pre>
</body>
</html>