https://github.com/web-platform-tests/wpt
Raw File
Tip revision: aa1f02a879a9b27b65e60acc905566d0398f92bc authored by Anne van Kesteren on 09 April 2018, 12:47:29 UTC
Remove generate_tests from NodeIterator.html
Tip revision: aa1f02a
caret-color-002.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: caret-color is inherited</title>
<link rel="author" title="Chris Lilley" href="mailto:chris@w3.org">
<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 value does inherit">
<style>
  textarea {
    font-size: 3em;
    font-weight: bold;
    width: 10em;
    padding: 10px;
    background: black; color: white; /* the color of a thin object like the caret is easier to see on a black background. */
  }
  div {
    caret-color: lime;
  }
</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