chromium/third_party/blink/web_tests/external/wpt/css/css-lists/list-style-type-decimal-line-height.html

<!doctype html>
<meta charset="utf-8">
<title>CSS Lists Test - check that the line height is the same between different forms of ::markers</title>
<link rel="author" title="Mats Palmgren" href="mailto:[email protected]">
<link rel="help" href="https://drafts.csswg.org/css-lists-3/#text-markers">
<link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=942017">
<link rel="match" href="list-style-type-decimal-line-height-ref.html">
<style>
  div {
    display: grid;
    grid-template-columns: 100px 100px auto;
    align-items: start;
    background: red;
  }
  li {
    line-height: 100%;
    counter-set: list-item 1;
  }
  ol {
    margin: 0;
    padding: 0;
    padding-left: 40px;
    background: green;
  }
  ol:nth-child(2) > li {
    list-style-type: "1. ";
  }
  ol:nth-child(3) > ::marker {
    content: counter(list-item) ". ";
  }
</style>

<div>
  <ol>
    <li>foo</li>
    <li>bar</li>
    <li>baz</li>
  </ol>
  <ol>
    <li>foo</li>
    <li>bar</li>
    <li>baz</li>
  </ol>
  <ol>
    <li>foo</li>
    <li>bar</li>
    <li>baz</li>
  </ol>
</div>