trisquel-icecat/icecat/layout/reftests/css-visited/variables-visited.html

12 lines
163 B
HTML

<!doctype html>
<style>
a {
--foo: green;
}
:visited {
--foo: red;
color: var(--foo);
}
</style>
<a href="visited-page.html">Which color?</a>