diff options
Diffstat (limited to 'js/src/jit-test/tests/arguments/bug1711414.js')
-rw-r--r-- | js/src/jit-test/tests/arguments/bug1711414.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/arguments/bug1711414.js b/js/src/jit-test/tests/arguments/bug1711414.js new file mode 100644 index 0000000000..174a78b507 --- /dev/null +++ b/js/src/jit-test/tests/arguments/bug1711414.js @@ -0,0 +1,11 @@ +function bar() { this[0] = "overwritten"; } + +function foo() { + bar.apply(arguments, arguments); + return arguments[0]; +} + +with ({}) {} +for (var i = 0; i < 100; i++) { + assertEq(foo("original"), "overwritten"); +} |