ladybird/Tests/LibWeb/Layout/input/ol-render-style-list-item.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
326 B
HTML

<!DOCTYPE html>
<html>
<ol>
<li>One</li>
<li value=22>Twenty-two</li>
<div style="display:list-item">Twenty-three</div>
<li>Twenty-four</li>
<p style="display:list-item">Twenty-five</p>
<li>Twenty-six</li>
<span style="display:list-item">Twenty-seven</span>
<li>Twenty-eight</li>
</ol>
</html>