gecko-dev/layout/reftests/css-visited/selector-adj-sibling-3.xhtml
Emilio Cobos Álvarez 61d84af1db Bug 1431539: Tests. r=dholbert
MozReview-Commit-ID: FSkzeMjIWN1
2018-01-23 13:27:35 +01:00

20 lines
367 B
HTML

<!DOCTYPE HTML>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Test for bug 1431539</title>
<style>
a { text-decoration: none }
:visited { color: green }
:-moz-any(:visited) + span {
color: red;
}
</style>
</head>
<body>
<a href="visited-page.html">
<a href="visited-page.html">visited</a>
<span>Should be green</span>
</a>
</body>
</html>