summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/forced-colors-mode/forced-colors-mode-45-ref.html
blob: c7d535c5278837fad2216965ec19b2244a392337 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<meta charset="utf-8">
<title>Forced colors mode - caret-color with system color.</title>
<style>
  div {
    caret-color: GrayText;
    forced-color-adjust: none;
  }
  [contenteditable] {
    outline: none;
  }
</style>
<div id="caret" contenteditable>The caret color should remain GrayText</a>
<script>
  window.onload = function() {
    document.getElementById("caret").focus();
  }
</script>