Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: netwerk/test/unit/xpcshell.toml
"use strict";
function run_test() {
let testURIs = [
// 100.64/10 prefix (RFC 6598)
];
for (let [uri, isShared] of testURIs) {
let nsuri = Services.io.newURI(uri);
equal(isShared, Services.io.hostnameIsSharedIPAddress(nsuri));
}
}