Rule matching oddness with new CSS parser

David Hyatt khtml-devel@kde.org
Fri, 21 Feb 2003 03:41:10 -0800


In Safari with the new parser, the following rule matches the <a> even 
when :hover is not set.  Can someone confirm if this happens on the 
KHTML HEAD?

<html>
<head>
<style>
.links > a:link:hover { border: 10px solid red }
</style>
</head>
<body>

<div class="links">
<a href="foo.html">Hello</a>
</div>

This example is from the intro page of meyerweb's css/edge.

dave