blob: 8b5bf31456bd7e555cce7264b199fe206c8ae9a6 [file] [log] [blame]
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<style>
.styled:visited span {
color: red;
}
.styled:visited > span {
color: green;
}
</style>
<a class="styled" href="">
<span>Should be green</span>
(<a href=""><span>Should not be red</span></a>)
</a>
</html>