Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Errors
- This test failed 2 times in the preceding 30 days. quicksearch this test
- Manifest: caps/tests/unit/xpcshell.toml
var ssm = Services.scriptSecurityManager;
function makeURI(uri) {
return Services.io.newURI(uri);
}
function testIPV6Host(aHost, aExpected) {
var ipv6Host = ssm.createContentPrincipal(makeURI(aHost), {});
Assert.equal(ipv6Host.origin, aExpected);
}
function run_test() {
testIPV6Host(
);
testIPV6Host(
);
testIPV6Host(
);
testIPV6Host(
);
testIPV6Host(
);
}