chromium/third_party/blink/web_tests/virtual/text-antialias/selection/selection-rect-line-height-too-small.html

<style>
    div::selection { background-color: green; }
</style>
<div id="target" style="font-size: 16px; height: 20px; line-height: 0px;">
  The House
</div>
<script>
    // Select |The House|.
    getSelection().setBaseAndExtent(target.firstChild, 2, target.firstChild, 12);
</script>