summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/for-of/arguments-7.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/for-of/arguments-7.js')
-rw-r--r--js/src/jit-test/tests/for-of/arguments-7.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/for-of/arguments-7.js b/js/src/jit-test/tests/for-of/arguments-7.js
new file mode 100644
index 0000000000..cf58c2ba50
--- /dev/null
+++ b/js/src/jit-test/tests/for-of/arguments-7.js
@@ -0,0 +1,17 @@
+// Changing arguments.length during a for-of loop iterating over arguments affects the loop.
+
+load(libdir + "iteration.js");
+
+Object.prototype[Symbol.iterator] = Array.prototype[Symbol.iterator];
+
+var s;
+function f() {
+ for (var v of arguments) {
+ s += v;
+ arguments.length--;
+ }
+}
+
+s = '';
+f('a', 'b', 'c', 'd', 'e');
+assertEq(s, 'abc');