blob: 0539e17de5c9597f3a41dc39bd282fe17768364c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
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("http://[::1]/", "http://[::1]");
testIPV6Host(
"http://[2001:db8:85a3:8d3:1319:8a2e:370:7348]/",
"http://[2001:db8:85a3:8d3:1319:8a2e:370:7348]"
);
testIPV6Host(
"http://[2001:db8:85a3:8d3:1319:8a2e:370:7348]:443/",
"http://[2001:db8:85a3:8d3:1319:8a2e:370:7348]:443"
);
testIPV6Host(
"http://[2001:db8:85a3::1319:8a2e:370:7348]/",
"http://[2001:db8:85a3:0:1319:8a2e:370:7348]"
);
testIPV6Host(
"http://[20D1:0000:3238:DFE1:63:0000:0000:FEFB]/",
"http://[20d1:0:3238:dfe1:63::fefb]"
);
testIPV6Host(
"http://[20D1:0:3238:DFE1:63::FEFB]/",
"http://[20d1:0:3238:dfe1:63::fefb]"
);
}
|