Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

var ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
var uris = [
{
local: true,
},
{
local: false,
},
];
function run_test() {
for (let i = 0; i < uris.length; i++) {
let uri = ios.newURI(uris[i].uri);
let flags = ios.getDynamicProtocolFlags(uri);
Assert.equal(
Ci.nsIProtocolHandler.URI_IS_LOCAL_RESOURCE & flags,
uris[i].local ? Ci.nsIProtocolHandler.URI_IS_LOCAL_RESOURCE : 0
);
}
}