Updates:
Labels: -Area-Compat -NeedsReduction Has-Reduction
Comment #3 on issue 14606 by [email protected]: [banamex.com.mx]:
Displacement of hyperlinked elements on mouse over
http://code.google.com/p/chromium/issues/detail?id=14606
There 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
Reduced testcase can be found at:
http://go/reductions/14606/test_quirks.html
or see attached file
Attachments:
test_quirks.html 711 bytes
--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings
--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---