[Webkit-unassigned] [Bug 18336] Tooltip displays improperly
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Thu Apr 10 09:18:58 PDT 2008
http://bugs.webkit.org/show_bug.cgi?id=18336
------- Comment #1 from gamander at gmail.com 2008-04-10 09:18 PDT -------
Obviously the tooltip script "tooltip.js" is broken. In particular, these lines
pagex = (isapple == 1 ? 0:(ie5)?iebody.scrollLeft:window.pageXOffset);
pagey = (isapple == 1 ? 0:(ie5)?iebody.scrollTop:window.pageYOffset);
make no sense and should probably be replaced with:
pagex = (window.pageXOffset?window.pageXOffset:iebody.scrollLeft);
pagey = (window.pageYOffset?window.pageYOffset:iebody.scrollTop);
--
Configure bugmail: http://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
More information about the webkit-unassigned
mailing list