WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED CONFIGURATION CHANGED
18336
Tooltip displays improperly
https://bugs.webkit.org/show_bug.cgi?id=18336
Summary
Tooltip displays improperly
Blake Sweeney
Reported
2008-04-06 16:02:40 PDT
When hovering over a picture of the justices the tooltip should display next to the mouse. It does not. Instead, it appears much higher up the page. Picture here:
http://i25.tinypic.com/2eupz4p.png
Attachments
Add attachment
proposed patch, testcase, etc.
Marcus
Comment 1
2008-04-10 09:18:58 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);
Robert Blaut
Comment 2
2008-06-14 14:45:41 PDT
Confirmed as an evangelism bug. After changing user agent string to IE7 tooltips are rendered properly. The script tooltips.js should be fixed by oyez.org developers.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug