https://github.com/web-platform-tests/wpt
Raw File
Tip revision: c342c1ccba3e21cadb933bc2c648b37af18c26c8 authored by Mustaq Ahmed on 06 April 2018, 14:14:32 UTC
Make BlueTooth/USB requestDevice non-consuming.
Tip revision: c342c1c
caret-color-015.html
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: caret-color visited links</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">
<meta name="assert" content="Test checks that caret-color can be set on a contenteditable visited link">
<style>
  a {
    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: white;
    caret-color: red;
  }

  a:link {
    color: yellow;
  }

  a:visited {
    caret-color: lime;
  }
</style>
<body>
  <p>Before running this test, this <a href="./">link</a> must have been visited. It will have yellow text if this is not the case. If it its text is yellow, you need to navigate to this link first.
  <p>Test passes if, when the link 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>
  <a id="link" contenteditable href="./">link</a>
  <script>
    window.onload = function() {
      /* Convenience helper to get the link into the browsing history.
         Using a relative path because some browsers only allow replaceState within the same domain. */
      current_url = window.location.href;
      history.replaceState({},"","./");
      history.replaceState({},"",current_url);

      document.getElementById("link").focus();
    }
  </script>
</body>
back to top