Comment #1 on issue 1162 by felix8a: domita_test testArraySlice fails on chrome, opera, safari
http://code.google.com/p/google-caja/issues/detail?id=1162

this bug is because browsers disagree on the value of
  [9].slice(0, void 0)

browsers agree that
  [9].slice(0) ==> [9]
  [9].slice(0, 0) ==> []
  [9].slice(0, null) ==> []

but for
  [9].slice(0, void 0)
firefox says [], safari says [9], opera says [9]

es5 says it should be [9].
so, this is a bug in firefox, and in cajita's Array.slice.


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

Reply via email to