blob: 9d4cfadcc0b1c018d3e98bee81b208634f47919f [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Forced colors mode - visited caret-color.</title>
<link rel="help" href="https://www.w3.org/TR/css-color-adjust-1/#forced-colors-properties">
<link rel=match href="forced-colors-mode-42-ref.html">
<style>
a {
caret-color: orange;
}
a:visited {
caret-color: red;
}
[contenteditable] {
outline: none;
}
</style>
<a id="link" contenteditable href="">link</a>
<script>
window.onload = function() {
document.getElementById("link").focus();
}
</script>