Closed
Bug 225366
Opened 22 years ago
Closed 22 years ago
Regexp pattern /[A]/i not matching 'a'
Categories
(Rhino Graveyard :: Core, defect)
Tracking
(Not tracked)
VERIFIED
FIXED
1.5R5
People
(Reporter: pschwartau, Assigned: igor)
Details
Attachments
(1 file)
|
7.28 KB,
patch
|
Details | Diff | Splinter Review |
This is the Rhino analogue of bug 225343 against SpiderMonkey:
js> 'a'.match(/[a]/i);
a <----------------------- correct
js> 'a'.match(/[A]/i);
null <----------------------- bug
The testcase for this bug is:
mozilla/js/tests/ecma_3/RegExp/regress-225343.js
| Assignee | ||
Comment 1•22 years ago
|
||
This is pretty straightforward translation into Java of patch from attachment
135748 [details] [diff] [review] .
| Assignee | ||
Comment 3•22 years ago
|
||
I committed the patch
Status: NEW → RESOLVED
Closed: 22 years ago
Resolution: --- → FIXED
| Reporter | ||
Comment 4•22 years ago
|
||
Marking Verified FIXED.
The above testcase now passes in Rhino (interpreted and compiled mode) -
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•