Bug 1063538 - Part 2: Test case. r=khuey

This commit is contained in:
Shian-Yow Wu 2014-11-14 14:17:27 +08:00
parent 9c0dc720d5
commit ddbda08edf
3 changed files with 67 additions and 0 deletions

View File

@ -0,0 +1,18 @@
/**
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/
*/
var gJar = "jar:http://example.org/tests/dom/base/test/file_bug945152.jar!/data_big.txt";
var xhr = new XMLHttpRequest({mozAnon: true, mozSystem: true});
xhr.onprogress = function(e) {
xhr.abort();
postMessage({type: 'finish' });
self.close();
};
onmessage = function(e) {
xhr.open("GET", gJar, true);
xhr.send();
}

View File

@ -9,6 +9,7 @@ support-files =
bug1020226_worker.js
bug1020226_frame.html
bug998474_worker.js
bug1063538_worker.js
clearTimeouts_worker.js
closeOnGC_server.sjs
closeOnGC_worker.js
@ -106,6 +107,7 @@ support-files =
[test_bug1020226.html]
[test_bug1036484.html]
[test_bug998474.html]
[test_bug1063538.html]
[test_chromeWorker.html]
[test_clearTimeouts.html]
[test_close.html]

View File

@ -0,0 +1,47 @@
<!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1063538
-->
<head>
<meta charset="utf-8">
<title>Test for Bug 1063538</title>
<script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1063538">Mozilla Bug 1063538</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script type="application/javascript">
function runTest() {
var worker = new Worker("bug1063538_worker.js");
worker.onmessage = function(e) {
if (e.data.type == 'finish') {
ok(true, "Testing done.\n");
SimpleTest.finish();
}
};
worker.postMessage(true);
}
SimpleTest.waitForExplicitFinish();
addLoadEvent(function() {
SpecialPowers.pushPermissions([{'type': 'systemXHR', 'allow': true, 'context': document}], runTest);
});
</script>
</pre>
</body>
</html>