Comment #13 on issue 2056 by erik.corry: Math.max/Math.min have been bebugged in Chrome 18
http://code.google.com/p/v8/issues/detail?id=2056

It's hard to rush a stable channel release, especially over Easter.

If you monkey-patch Math.min to something like this untested code, does that help?

var Mathmin = Math.min;
Math.min = function (a, b) {
  if (a !== a) return a;
  if (b !== b) return b;
  return Mathmin(a, b);
  // Disable optimizer here:
  try {
  } catch (e) {
  }
}


--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev

Reply via email to