blob: 4505362d832850df67d28814bdd42a287c848475 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*
* Author: Geoffrey Sneddon <geoffers+mozilla@gmail.com>
*/
var BUGNUMBER = 646490;
var summary =
"RegExp.prototype.exec doesn't get the lastIndex and ToInteger() it for " +
"non-global regular expressions when it should";
print(BUGNUMBER + ": " + summary);
/**************
* BEGIN TEST *
**************/
var re = /./, called = 0;
re.lastIndex = {valueOf: function() { called++; return 0; }};
re.exec(".");
re.lastIndex = {toString: function() { called++; return "0"; }};
re.exec(".");
re.lastIndex = {
valueOf: function() { called++; return 0; },
toString: function() { called--; }
};
re.exec(".");
assertEq(called, 3, "FAIL, got " + called);
/******************************************************************************/
if (typeof reportCompare === "function")
reportCompare(true, true);
print("All tests passed!");
|