https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b6d437037393dc8b289bfb3504fc21a808760be3 authored by Michael[tm] Smith on 23 March 2018, 10:42:57 UTC
cc Update messages.json
Tip revision: b6d4370
caret-color-012.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: caret-color: auto</title>
<link rel="author" title="Manuel Rego Casasnovas" href="mailto:rego@igalia.com">
<link rel="help" href="http://www.w3.org/TR/css3-ui/#caret-color">
<meta name="flags" content="interact should">
<meta name="assert" content="Test checks that caret-color:auto is inherited as auto and resolves to the value of the color property at used value time">
<style>
  textarea {
    font-size: 3em;
    font-weight: bold;
    width: 10em;
    padding: 10px;
    background: black; /* the color of a thin object like the caret is easier to see on a black background. */

    color: lime;
  }
  div {
    caret-color: auto;
    color: red;
  }
</style>
<body>
  <p>Test passes if, when the text area below is focused for editing, the text insertion caret is green.</p>
  <p>The shape of the caret, and whether it flashes, are not part of the test.</p>
  <div>
    <textarea id="test"></textarea>
  </div>
  <script>
    window.onload = function() {
      document.getElementById("test").focus();
    }
  </script>
</body>
back to top