summaryrefslogtreecommitdiffstats
path: root/dom/network/tests/test_tcpsocket_default_permissions.html
blob: 19c44b7b9ba88967b2554c4075b251671e96f3e5 (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
36
37
38
<!DOCTYPE HTML>
<html>
<head>
  <title>Test to ensure TCPSocket permission is disabled by default</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/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 is disabled by default **/

var caught = false;
try {
  new TCPSocket("localhost", 80, {})
} catch (e) {
  caught = true;
}

ok(caught, "TCPSocket should not exist by default");

var caught = false;
try {
  navigator.mozTCPSocket.open("localhost", 80, {})
} catch (e) {
  caught = true;
}

ok(caught, "navigator.mozTCPSocket.open should not exist by default");

</script>
</pre>
</body>
</html>