On Mar 21, 7:08 am, "T.J. Crowder" <t...@crowdersoftware.com> wrote:
[...]
> Once we have a solid list, I'll update the page; and then update it
> again if the list changes in 1.6.0.4, as I expect it will (e.g., +IE8
> at least, perhaps Chrome?).

I think we pass most of the tests in Chrome.
Chrome is actually doing something very retarded:

'' instanceof String; // false
''.constructor === String; // false
''.escapeHTML === String.prototype.escapeHTML; // false

This makes some of the string tests fail, since Chrome's native
`escapeHTML` is being used instead of Prototype's
`String.prototype.escapeHTML` (which is effectively ignored)

Thank god, Chromium nightly (2.x) seems to "fix" this.

--
kangax
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Prototype: Core" group.
To post to this group, send email to prototype-core@googlegroups.com
To unsubscribe from this group, send email to 
prototype-core-unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/prototype-core?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to