blob: e67b97276818d50adb0e47105fbecab3c91e52c7 (
plain)
1
2
3
4
5
6
7
8
|
<!DOCTYPE html>
<title>CSS Cascade: all:unset in :visited</title>
<style>
:root { color: green; }
a:visited { color: red; }
a:visited { color: unset; }
</style>
<a href="">Test passes if this text is green.</a>
|