fune/dom/file/tests/test_bloburi.js
Emilio Cobos Álvarez 90e1d8d837 Bug 1809126 - Remove moz-fonttable protocol. r=jfkthame,necko-reviewers
We only use it to generate a dummy URI for SVG-in-Opentype documents. We
don't really need the URIs to be unique or anything in practice.

I noticed this code while looking at the load flags set up for
bug 1809006.

Differential Revision: https://phabricator.services.mozilla.com/D166291
2023-01-20 18:41:16 +00:00

24 lines
583 B
JavaScript

var ios = Cc["@mozilla.org/network/io-service;1"].getService(Ci.nsIIOService);
var uris = [
{
uri: "blob:https://example.com/230d5d50-35f9-9745-a64a-15e47b731a81",
local: true,
},
{
uri: "rstp://1.2.3.4/some_path?param=a",
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
);
}
}