summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-44.html
blob: 4526e19550e069cdfd2f8f57bec80b0138360554 (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>Forced colors mode - visited caret-color with system color.</title>
<link rel="help" href="https://www.w3.org/TR/css-color-adjust-1/#forced-colors-properties">
<link rel=match href="forced-colors-mode-44-ref.html">
<style>
  a {
    caret-color: orange;
  }
  a:visited {
    caret-color: GrayText;
  }
  [contenteditable] {
    outline: none;
  }
</style>
<a id="link" contenteditable href="">link</a>
<script>
  window.onload = function() {
    document.getElementById("link").focus();
  }
</script>