summaryrefslogtreecommitdiffstats
path: root/js/src/jit-test/tests/regexp/match-indices-warp.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/jit-test/tests/regexp/match-indices-warp.js')
-rw-r--r--js/src/jit-test/tests/regexp/match-indices-warp.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/js/src/jit-test/tests/regexp/match-indices-warp.js b/js/src/jit-test/tests/regexp/match-indices-warp.js
new file mode 100644
index 0000000000..634d368aee
--- /dev/null
+++ b/js/src/jit-test/tests/regexp/match-indices-warp.js
@@ -0,0 +1,8 @@
+var re = /A*(B)A*/d;
+for (var i = 0; i < 100; i++) {
+ var match = re.exec("xxxxxAAABAxxxxx");
+ assertEq(match.indices[0][0], 5);
+ assertEq(match.indices[0][1], 10);
+ assertEq(match.indices[1][0], 8);
+ assertEq(match.indices[1][1], 9);
+}