summaryrefslogtreecommitdiff
path: root/dom/network/tests/test_tcpsocket_default_permissions.html
blob: 8c0f42e32c0f0a0b72b679ff76a11dda0c8cd797 (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
<!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 **/

try {
  navigator.mozTCPSocket;
  throw new Error("Error: navigator.mozTCPSocket should not exist by default");
} catch (e) {
  ok(true, "navigator.mozTCPSocket should not exist by default");  
}

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