mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
423 B
JavaScript
12 lines
423 B
JavaScript
function run_test() {
|
|
var zReader = Components.classes["@mozilla.org/libjar/zip-reader;1"]
|
|
.createInstance(Components.interfaces.nsIZipReader);
|
|
try {
|
|
zReader.open(null);
|
|
do_throw("Shouldn't get here!");
|
|
} catch (e if (e instanceof Components.interfaces.nsIException &&
|
|
e.result == Components.results.NS_ERROR_NULL_POINTER)) {
|
|
// do nothing, this test passes
|
|
}
|
|
}
|