Updates:
        Status: Invalid
        Owner: [email protected]

Comment #1 on issue 257 by [email protected]: Entities not working  
correctly in XHTML (mac-only)
http://code.google.com/p/v8/issues/detail?id=257

This is not a V8 issue.  On Mac, V8 is passed the following code to  
evaluate:

var b = "";
alert(b);
alert(b.length);

which matches what you are seeing.  On Linux and Windows, V8 is passed the  
following
code:

var b = "→";
alert(b);
alert(b.length);

which is probably what you expected.

This is an issue with the preprocessing of the script code before it is  
handed to V8.

--
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