mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-26 02:17:34 +09:00
import FIREFOX_52_6_0esr_RELEASE from mozilla-esr52 hg repo
This commit is contained in:
commit
dcd9973243
150858 changed files with 23884658 additions and 0 deletions
42
dom/url/tests/test_bug883784.jsm
Normal file
42
dom/url/tests/test_bug883784.jsm
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
this.EXPORTED_SYMBOLS = ["Test"];
|
||||
|
||||
const { classes: Cc, interfaces: Ci, utils: Cu, results: Cr } = Components;
|
||||
Cu.importGlobalProperties(["URL"]);
|
||||
|
||||
this.Test = {
|
||||
start: function(ok, is, finish) {
|
||||
let worker = new ChromeWorker("jsm_url_worker.js");
|
||||
worker.onmessage = function(event) {
|
||||
if (event.data.type == 'status') {
|
||||
ok(event.data.status, event.data.msg);
|
||||
} else if (event.data.type == 'url') {
|
||||
var xhr = Components.classes["@mozilla.org/xmlextras/xmlhttprequest;1"]
|
||||
.createInstance(Components.interfaces.nsIXMLHttpRequest);
|
||||
xhr.open('GET', event.data.url, false);
|
||||
xhr.onreadystatechange = function() {
|
||||
if (xhr.readyState == 4) {
|
||||
ok(true, "Blob readable!");
|
||||
URL.revokeObjectURL(event.data.url);
|
||||
finish();
|
||||
}
|
||||
}
|
||||
xhr.onerror = function() {
|
||||
ok(false, "Blob unreadable, should not happen!");
|
||||
URL.revokeObjectURL(event.data.url);
|
||||
finish();
|
||||
}
|
||||
xhr.send();
|
||||
}
|
||||
};
|
||||
|
||||
var self = this;
|
||||
worker.onerror = function(event) {
|
||||
is(event.target, worker);
|
||||
ok(false, "Worker had an error: " + event.data);
|
||||
self.worker.terminate();
|
||||
finish();
|
||||
};
|
||||
|
||||
worker.postMessage(0);
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue