summaryrefslogtreecommitdiffstats
path: root/dom/workers/test/test_navigator.html
blob: a9ca9cad669c2ac0cb4fe6009485a31df5237301 (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
<!--
  Any copyright is dedicated to the Public Domain.
  http://creativecommons.org/publicdomain/zero/1.0/
-->
<!DOCTYPE HTML>
<html>
<!--
Tests of DOM Worker Navigator
-->
<head>
  <title>Test for DOM Worker Navigator</title>
  <script 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>
  ok(!self.isSecureContext, "This test should not be running in a secure context");
</script>
<script type="text/javascript" src="test_navigator.js"></script>
</pre>
</body>
</html>