summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/jaeger/inline/bug676491.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--js/src/jit-test/tests/jaeger/inline/bug676491.js14
1 files changed, 14 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/jaeger/inline/bug676491.js b/js/src/jit-test/tests/jaeger/inline/bug676491.js
new file mode 100644
index 0000000000..82e6095a0c
--- /dev/null
+++ b/js/src/jit-test/tests/jaeger/inline/bug676491.js
@@ -0,0 +1,14 @@
+Array.prototype.__defineSetter__(32, function() { print("Hello from arbitrary JS");});
+var UBound = 0;
+var expect= '';
+var expectedvalues = [];
+for (var j=0; j < 10; j++) {
+ addThis();
+ addThis();
+ addThis();
+ addThis();
+}
+function addThis() {
+ expectedvalues[UBound] = expect;
+ UBound++;
+}