chromium/third_party/blink/web_tests/editing/caret/caret-in-inline-block-expected.html

<style>
div.sample {
  display: 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>