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;
}
function run_test() {
Assert.ok(
true,
"Should be able to create channel from file URL without hostname"
);
// at which point we should wrap the channel setup in a try-block
// and assert in the catch
Assert.ok(
true,
"Should be able to create channel from file URL with hostname"
);
}