Bug 8043 - unicode (\uhhhh) sequences unrecognized in regex
Summary: unicode (\uhhhh) sequences unrecognized in regex
Status: RESOLVED DUPLICATE of bug 6257
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 420+
Hardware: Mac OS X 10.4
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2006-03-28 16:29 PST by rahul abrol
Modified: 2006-03-29 07:01 PST (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description rahul abrol 2006-03-28 16:29:58 PST
alert("ä".match(/\u00e4/))

correctly yields "ä" in firefox and opera, but not in safari/ToT.  on the other hand,

alert("ä".match(/ä/)) 

works fine across the board.

i didn't see this listed as part of bug 4885.
Comment 1 Alexey Proskuryakov 2006-03-28 19:31:03 PST
This is highly related to bug 7253 and bug 6257.
Comment 2 rahul abrol 2006-03-29 07:01:48 PST
geoff's patch from bug 6257 fixes this, so i'm going to mark as dupe.

*** This bug has been marked as a duplicate of 6257 ***