mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
39 lines
763 B
JavaScript
39 lines
763 B
JavaScript
|
/* verify that certain invalid URIs are not parsed by the resource
|
||
|
protocol handler */
|
||
|
|
||
|
const Cc = Components.classes;
|
||
|
const Ci = Components.interfaces;
|
||
|
const Cr = Components.results;
|
||
|
|
||
|
const specs = [
|
||
|
"resource:////",
|
||
|
"resource:///http://www.mozilla.org/",
|
||
|
"resource:///file:///",
|
||
|
"resource:///..\\",
|
||
|
"resource:///..\\..\\",
|
||
|
"resource:///..%5C",
|
||
|
"resource:///..%5c"
|
||
|
];
|
||
|
|
||
|
function check_for_exception(spec)
|
||
|
{
|
||
|
var ios =
|
||
|
Cc["@mozilla.org/network/io-service;1"].
|
||
|
getService(Ci.nsIIOService);
|
||
|
|
||
|
try {
|
||
|
var channel = ios.newChannel(spec, null, null);
|
||
|
}
|
||
|
catch (e) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
do_throw("Succesfully opened invalid URI: '" + spec + "'");
|
||
|
}
|
||
|
|
||
|
function run_test() {
|
||
|
for each (spec in specs) {
|
||
|
check_for_exception(spec);
|
||
|
}
|
||
|
}
|