diff -r 000000000000 -r 6474c204b198 js/src/tests/js1_8_5/regress/regress-551763-1.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/js/src/tests/js1_8_5/regress/regress-551763-1.js Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,7 @@ +// |reftest| skip-if(xulRuntime.shell) +// skip in the shell because 'arguments' is defined as a shell utility function + +/* Check we can delete arguments in the global space. */ +arguments = 42; +reportCompare(delete arguments, true, "arguments defined as global"); +