ladybird/Tests/LibWeb/Layout/input/list-render-list-owner-is-document.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

12 lines
392 B
HTML

<!DOCTYPE html>
<body>
<ol id="ol-without-box" style="display:contents">
<!--
The list item owner will be the document; not "ol-without-box".
As a result, the list will be displayed as an ul.
FIXME: Ladybird paints MarkerPaintable... but without an actual marker. Firefox and Chrome show a minuscule bullet.
-->
<li>One</li>
<li>Two</li>
</ol>
</body>