1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/components/commandlines/test/unit/test_bug666224.js Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,6 @@ 1.4 +function run_test() { 1.5 + var cmdLine=Components.classes["@mozilla.org/toolkit/command-line;1"].createInstance(Components.interfaces.nsICommandLine); 1.6 + try { 1.7 + cmdLine.getArgument(cmdLine.length); 1.8 + } catch(e) {} 1.9 +}