ladybird/Tests/LibWeb/Layout/input/ol-render-item-values.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

13 lines
333 B
HTML

<!DOCTYPE html>
<!--
Confirms MarkerPaintable sizes for reference list.
FIXME: Left alignment cuts into border.
-->
<body>
<ol start=7>
<li>Seven</li>
<li value="-112">Minus one hundred and twelve</li> <!-- Confirms negative ordinal -->
<li value="1024">Two to the power of ten</li>
<li value="11">Eleven</li>
</ol>
</body>