-1:000000000000 | 0:e02364f1b7c1 |
---|---|
1 // |reftest| skip-if(xulRuntime.shell) | |
2 // skip in the shell because 'arguments' is defined as a shell utility function | |
3 | |
4 /* Check we can delete arguments in the global space. */ | |
5 arguments = 42; | |
6 reportCompare(delete arguments, true, "arguments defined as global"); | |
7 |