- Notifications
You must be signed in to change notification settings - Fork 3.3k
/
Copy pathdetails-open.html
16 lines (16 loc) · 596 Bytes
/
details-open.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<metacharset="utf-8">
<title>CSS Test: list-item counter with details open </title>
<linkrel="author" href="mailto:sakhapov@chromium.org">
<linkrel="match" href="details-open-ref.html">
<linkrel="help" href="https://html.spec.whatwg.org/multipage/grouping-content.html#the-li-element">
<details>
<summary>Expand me</summary>
<olstyle="margin: 0; padding: 0; list-style-position: inside;">
<livalue="5">Should be numbered 5</li>
</ol>
</details>
<script>
document.documentElement.offsetTop;
document.querySelector("details").setAttribute("open","");
</script>