summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-ui/caret-color-005.html
blob: 30808cbde7c393af1de42717dd7b18de3aa491cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: caret-color auto, white on black</title>
<link rel="author" title="Florian Rivoal" href="mailto:florian@rivoal.net">
<link rel="help" href="http://www.w3.org/TR/css3-ui/#caret-color">
<meta name="flags" content="interact">
<meta name="assert" content="Test checks that caret-color:auto provides good contrast in white on black">
<style>
  textarea {
    font-size: 3em;
    font-weight: bold;
    width: 10em;
    padding: 10px;

    background: black;
    color: white;
    caret-color: auto; /*initial value, but to be sure in case the UA stylesheet sets something else */
  }
</style>
<body>
  <p>Test passes if, when the text area below is focused for editing, the text insertion caret is either white
  or some other color that contrasts well with the background.</p>
  <p>The shape of the caret, and whether it flashes, are not part of the test.</p>
  <textarea id="test"></textarea>
  <script>
    window.onload = function() {
      document.getElementById("test").focus();
    }
  </script>
</body>