ladybird/Tests/LibWeb/Ref/expected/ol-render-nested-ref.html
Manuel Zahariev 20546725be LibWeb: Tests for rendering lists and their ordinals
The following tests also expose bugs before this PR:
- Layout/input/ol-render-item-values.html: negative ordinal values
- Layout/input/ol-render-deep-hybrid-list-item-list.html: ordinals
  deep into the list owner subtree
2025-06-16 12:44:58 +01:00

19 lines
358 B
HTML

<!DOCTYPE html>
<body>
<ol>
<li value=1>One
<li value=5>Five
<ol>
<li value=31>Thirty-one
<li value=32>Thirty-two
<ol reversed>
<li value=4>Four
<li value=3>Three
<li value=2>Two
<li value=1>One
</ol>
<li value=33>Thirty-three
</ol>
<li value=6>Six
</ol>
</body>