blob: 74c528ebff9082b9de56c76105908149bc4677d0 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#test-container {
height: 50px;
width: 50px;
overflow: hidden;
}
#test {
height: inherit;
width: inherit;
caret-color: green;
transform-origin: left top;
transform: scale(50, 50);
font-size: 10px; /* Needed for the caret to render in Firefox. */
}
</style>
</head>
<body>
<p>This tests that the text insertion point is rendered with the color caret-color.</p>
<div id="test-container">
<div id="test" contenteditable="true">&nbsp;<!-- Needed for the caret to render in Firefox. --></div>
</div>
<script>
document.getElementById("test").focus();
</script>
</body>
</html>