Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: netwerk/test/unit/xpcshell.toml
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
function setupChannel(uri) {
var chan = NetUtil.newChannel({
uri,
loadUsingSystemPrincipal: true,
});
chan.QueryInterface(Ci.nsIFileChannel);
return chan;
}
add_task(async function test() {
Assert.ok(
true,
"Should be able to create channel from file URL without hostname"
);
Assert.ok(
true,
"Should be able to create channel from file URL with hostname"
);
await Assert.rejects(
/TypeError: NetworkError when attempting to fetch resource./
);
await Assert.rejects(
/TypeError: NetworkError when attempting to fetch resource./
);
});