mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
53 lines
1.1 KiB
HTML
53 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Test for XMLHttpRequest with system privileges</title>
|
|
<script type="text/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 class="testbody" type="application/javascript;version=1.8">
|
|
|
|
function message(event) {
|
|
if (event.data.test == 'ok')
|
|
ok(event.data.a, event.data.event);
|
|
else if(event.data.test == 'is')
|
|
is(event.data.a, event.data.b, event.data.event);
|
|
else if(event.data.test == 'finish') {
|
|
run();
|
|
}
|
|
};
|
|
|
|
function test1() {
|
|
var worker = new Worker("test_xhr_system.js");
|
|
worker.onmessage = message;
|
|
worker.postMessage(true);
|
|
}
|
|
|
|
var tests = [ test1 ];
|
|
function run() {
|
|
if (!tests.length) {
|
|
SimpleTest.finish();
|
|
return;
|
|
}
|
|
|
|
var func = tests.shift();
|
|
func();
|
|
}
|
|
|
|
SimpleTest.waitForExplicitFinish();
|
|
|
|
SpecialPowers.pushPermissions([{'type': 'systemXHR', 'allow': true, 'context': document}], run);
|
|
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|