[Webkit-unassigned] [Bug 28644] New: Displacement of hyperlinked elements on mouse over

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Aug 21 17:26:00 PDT 2009


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

           Summary: Displacement of hyperlinked elements on mouse over
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: PC
               URL: http://banamex.com.mx/
        OS/Version: Windows XP
            Status: UNCONFIRMED
          Severity: Normal
          Priority: P2
         Component: New Bugs
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: jasneet at chromium.org
                CC: jasneet at chromium.org


Created an attachment (id=38421)
 --> (https://bugs.webkit.org/attachment.cgi?id=38421)
reduced testcase

Steps:
Go to http://banamex.com.mx/

II Issue:
Hover over footer elements and entire footer container shifts up.

III Conclusion:
here are 2 issues in this bug.
1) When you hover one link, all links are underlined
2) When you hover, the text moves

The issue may be caused by 
1) definition of a class 'boton_heder_footer' in the styles in which the <div> 
containing the links and the links themselves use the same class id.

or

2) in the styles, they have these definitions-
   .boton_heder_footer:link { text-decoration:none; font-size:9px; }
   .boton_heder_footer:visited { text-decoration:none; font-size:9px; }
   .boton_heder_footer:hover { text-decoration:underline; font-size:9px; }
   .boton_heder_footer:active { text-decoration:none; font-size:9px; }

Not sure if these were meant to have (note the a: after the class id to define
the 
anchor tags)
   .boton_heder_footer a:link { text-decoration:none; font-size:9px; }
   .boton_heder_footer a:visited { text-decoration:none; font-size:9px; }
   .boton_heder_footer a:hover { text-decoration:underline; font-size:9px; }
   .boton_heder_footer a:active { text-decoration:none; font-size:9px; }


If I set the styles to be like that of the latter, or remove the class of the
<div> 
containing the links, then webkit behaves like that of FF and IE 

IV Other Browsers:
IE7: ok
FF3: ok

V Nightly tested : 47639

Bug in Chromium : http://code.google.com/p/chromium/issues/detail?id=14606

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