blob: eaea3bcb81024cc95a65b4cb76c2750fb8a6cac2 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=475636
Test that refresh to data: URIs don't inherit the principal
-->
<head>
<title>Test for Bug 475636</title>
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body onload="gen.next()">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=475636">Mozilla Bug 475636</a>
<div id="content" style="display: none">
</div>
<iframe id=loader></iframe>
<pre id="test">
<script class="testbody" type="application/javascript;version=1.8">
SimpleTest.waitForExplicitFinish();
gen = runTests();
window.private = 42;
window.addEventListener("message", function(e) {
gen.send(e.data);
}, false);
var url = "file_bug475636.sjs?";
function runTests() {
var loader = document.getElementById('loader');
for (var testNum = 1; ; ++testNum) {
loader.src = url + testNum;
let res = (yield);
if (res == "done") {
SimpleTest.finish();
yield undefined;
}
is(res, "pass");
}
}
</script>
</pre>
</body>
</html>
|