summaryrefslogtreecommitdiffstats
path: root/netwerk/test/mochitests/test_viewsource_unlinkable.html
blob: f4c40641833be86e0da6ff5f4477aeb664ae1c04 (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
<!DOCTYPE HTML>
<html>
<!--
-->
<head>
  <title>Test for view-source linkability</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />

<script type="text/javascript">
function runTest() {
  SimpleTest.doesThrow(function() {
    window.open('view-source:' + location.href, "_blank");
  }, "Trying to access view-source URL from unprivileged code should throw.");
  SimpleTest.finish();
}
</script>
</head>
<body onload="runTest();">
<p id="display"></p>
<div id="content" style="display: none"></div>
<pre id="test">
</pre>
</body>
</html>