blob: 9b8c164908ea02a0693a4714024751fc7e2c1e46 [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>Forced colors mode - 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-43-ref.html">
<style>
div {
caret-color: red;
}
[contenteditable] {
outline: none;
}
</style>
<div id="caret" contenteditable>The caret color should be overridden to currentColor</a>
<script>
window.onload = function() {
document.getElementById("caret").focus();
}
</script>