зеркало из https://github.com/mozilla/gecko-dev.git
18 строки
499 B
JavaScript
18 строки
499 B
JavaScript
function run_test() {
|
|
// Just check the contract ID alias works well.
|
|
try {
|
|
var serviceA = Cc[
|
|
"@mozilla.org/netwerk/cache-storage-service;1"
|
|
].getService(Ci.nsICacheStorageService);
|
|
Assert.ok(serviceA);
|
|
var serviceB = Cc[
|
|
"@mozilla.org/network/cache-storage-service;1"
|
|
].getService(Ci.nsICacheStorageService);
|
|
Assert.ok(serviceB);
|
|
|
|
Assert.equal(serviceA, serviceB);
|
|
} catch (ex) {
|
|
do_throw("Cannot instantiate cache storage service: " + ex);
|
|
}
|
|
}
|