Forum Moderators: open
I have a page with an iframe and a number of links which target this iframe. I have styled the links so they have a different color background when visited. In Firefox however I have noticed the 'visited' status doesn't show up until the main page is refreshed. IE and Safari work fine and show the 'visited' color immediately. Here's the relevant css:
a,a:link{
color:#000;
text-decoration:none;
}
a:visited{
background-color:#F30;
}
a:hover{
background-color:#0F0;
}
a:active{
background-color:#F30
}
and the link looks like this:
<a href="http://......" target="i_frm" onFocus="blur()">
Thanks a lot if you could help!
Firefox / Gecko is a big code-base, and it's full of little oddities like this (like the FavIcon issues). The developers have to prioritize their time, so small bugs don't get much attention unless they irritate someone who's capable of fixing them.
[bugzilla.mozilla.org...]