blob: c8aab9fe1db16b68d90ab7d2faa485e02ed2848b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* Test to ensure that load/decode notifications are delivered completely and
* asynchronously when dealing with a file that's a 404.
*/
/* import-globals-from async_load_tests.js */
const { XPCOMUtils } = ChromeUtils.importESModule(
"resource://gre/modules/XPCOMUtils.sys.mjs"
);
var ioService = Services.io;
// This is used in async_load_tests.js
// eslint-disable-next-line no-unused-vars
XPCOMUtils.defineLazyGetter(this, "uri", function () {
return ioService.newURI(
"http://localhost:" +
server.identity.primaryPort +
"/async-notification-never-here.jpg"
);
});
load("async_load_tests.js");
|