summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-34.html
blob: f4ec066e30fa9c742b26572f6cd1e07a0ae02d6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test forced colors mode :visited colors with sys colors</title>
<link rel="help" href="https://www.w3.org/TR/css-color-adjust-1/#forced-colors-properties">
<link rel=match href="forced-colors-mode-34-ref.html">
<style>
  a {
    background-color: white;
    border: 1px solid;
    text-decoration: line-through;
    text-emphasis: '*';
    -webkit-text-emphasis: '*';
  }
  a:visited {
    background-color: CanvasText;
    border: GrayText;
    color: GrayText;
    text-decoration-color: GrayText;
    text-emphasis: GrayText;
    -webkit-text-emphasis: GrayText;
  }
</style>
<a href="">Visited link.</a>