mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
53 lines
1.1 KiB
HTML
53 lines
1.1 KiB
HTML
<!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>
|