chromium/third_party/blink/web_tests/external/wpt/css/CSS2/normal-flow/block-in-inline-vertical-align-001-ref.html

<!DOCTYPE html>
<style>
  div {
    line-height: 20px;
  }
  </style>
  <p>The numbers 1, 2 and 3 below should be in ascending order, from top to bottom, with no overlap.</p>
<div>
  2
  <span style="vertical-align: 20px;">
    1
    <div>3</div>
    4
    <div>5</div>
    6
    <div>7</div>
    8
  </span>
</div>