mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 06:11:37 +00:00
Bug 1063538 - Part 2: Test case. r=khuey
This commit is contained in:
parent
9c0dc720d5
commit
ddbda08edf
18
dom/workers/test/bug1063538_worker.js
Normal file
18
dom/workers/test/bug1063538_worker.js
Normal 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();
|
||||
}
|
@ -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]
|
||||
|
47
dom/workers/test/test_bug1063538.html
Normal file
47
dom/workers/test/test_bug1063538.html
Normal 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>
|
Loading…
Reference in New Issue
Block a user