chromium/third_party/blink/web_tests/external/wpt/css/css-lists/details-open.html

<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Test: list-item counter with details open </title>
<link rel="author" href="mailto:[email protected]">
<link rel="match" href="details-open-ref.html">
<link rel="help" href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-li-element">
<details>
  <summary>Expand me</summary>
  <ol style="margin: 0; padding: 0; list-style-position: inside;">
    <li value="5">Should be numbered 5</li>
  </ol>
</details>
<script>
  document.documentElement.offsetTop;
  document.querySelector("details").setAttribute("open", "");
</script>