blob: aced2eb7a6d0b3c65ef37bb9ca063dad09308b41 (
plain)
1
2
3
4
5
6
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");
|