ladybird/Tests/LibWeb/Ref/input/ol-render-nested.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

28 lines
510 B
HTML

<!DOCTYPE html>
<head>
<link rel="match" href="../expected/ol-render-nested-ref.html" />
</head>
<body>
<!--
FIXME: Add support hierarchical markers https://drafts.csswg.org/css-lists-3/#example-598c7e61
-->
<!DOCTYPE html>
<body>
<ol>
<li>One
<li value=5>Five
<ol start=31>
<li>Thirty-one
<li>Thirty-two
<ol reversed>
<li>Four
<li>Three
<li>Two
<li>One
</ol>
<li>Thirty-three
</ol>
<li>Six
</ol>
</body>
</body>