Issue 149: Some upper/lower case mappings are performed incorrectly
http://code.google.com/p/v8/issues/detail?id=149

New issue report by christian.plesner.hansen:
We currently do incorrect case mapping when a character maps to a single
other character whose code point value is more than 2^11 away.

For instance <latin capital letter L with middle tilde>, U+2C62, currently
lower-case converts to U+426B which is incorrect; it should map to <latin
small letter l with middle tilde>, U+026B.

This code demonstrates the problem:

String.fromCharCode(0x2C62).toLowerCase().charCodeAt(0).toString(16)




Issue attributes:
        Status: Accepted
        Owner: christian.plesner.hansen
        Labels: Type-Bug Priority-Medium

-- 
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
-~----------~----~----~----~------~----~------~--~---

Reply via email to