[Webkit-unassigned] [Bug 40355] Exception loading Google Wave in Safari 5

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jun 9 16:04:56 PDT 2010


https://bugs.webkit.org/show_bug.cgi?id=40355





--- Comment #4 from Steve Dunham <dunhamsteve at gmail.com>  2010-06-09 16:04:55 PST ---
If you replace:

    tmp = (tmp >> 1);

with

   var tmp2 = (tmp >> 1);
   tmp = tmp2;

the testcase passes.

If you instrument the original testcase with print statements, tmp.toString() is "3" before the shift operation and "3.0000000000000004" afterwards.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list