blob: e2b781da8721c93dfa9c4e4a9a7c7b17af59768e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
// This is just a crashtest for a url that is rejected at parse time (port 80,000)
Cu.import("resource://gre/modules/NetUtil.jsm");
function run_test()
{
// Bug 1301621 makes invalid ports throw
Assert.throws(() => {
var chan = NetUtil.newChannel({
uri: "http://localhost:80000/",
loadUsingSystemPrincipal: true
});
}, "invalid port");
do_test_finished();
}
|