diff options
Diffstat (limited to 'netwerk/test/unit/test_bug652761.js')
-rw-r--r-- | netwerk/test/unit/test_bug652761.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/netwerk/test/unit/test_bug652761.js b/netwerk/test/unit/test_bug652761.js new file mode 100644 index 000000000..e2b781da8 --- /dev/null +++ b/netwerk/test/unit/test_bug652761.js @@ -0,0 +1,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(); +} + |