blob: 246fb199a4679a1a4c40b42add721fd645478b2b [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
#test-container {
height: 50px;
width: 50px;
overflow: hidden;
}
#test {
height: inherit;
width: inherit;
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 caret-color falls back to 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>