blob: b10d27d9aaf7bd8ace4fbceda7e3516d7d6a675c [file] [log] [blame]
<style>
div.sample {
display: inline-block;
padding-top: 10px;
padding-bottom: 10px;
margin-bottom: 200px;
width: 400px;
}
</style>
<body>
<p>This test checks caret height in display:inline-block.</p>
<div class="sample" contenteditable="true"></div>
</body>
<script>
onload = function() {
document.querySelector("div[contenteditable]").focus();
};
</script>