blob: e85f7f194ead9f7c6ba576db13c794fc80de9a4f [file] [log] [blame]
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Basic User Interface Test: caret-color auto, gray on gray</title>
<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 may">
<meta name="assert" content="Test checks that caret-color:auto provides good contrast in gray on gray">
<style>
textarea {
font-size: 3em;
font-weight: bold;
width: 10em;
padding: 10px;
background: gray;
color: gray;
caret-color: auto; /*initial value, but to be sure in case the UA stylesheet sets something else */
}
</style>
<body>
<p>Test passes if, when the text area below is focused for editing, the text insertion caret is
any color that contrasts well with the background.</p>
<p>The shape of the caret, and whether it flashes, are not part of the test.</p>
<textarea id="test"></textarea>
<script>
window.onload = function() {
document.getElementById("test").focus();
}
</script>
</body>