blob: 292fd68a9d1caa5bb9c8e6064ecae9b50907e4a6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
"use strict";
function run_test() {
var ioService = Cc["@mozilla.org/network/io-service;1"].getService(
Ci.nsIIOService
);
try {
var linkService = Cc[
"@mozilla.org/network/network-link-service;1"
].getService(Ci.nsINetworkLinkService);
// The offline status should depends on the link status
Assert.notEqual(ioService.offline, linkService.isLinkUp);
} catch (e) {
// The network link service might not be available
Assert.equal(ioService.offline, false);
}
}
|