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

14 lines
467 B
HTML

<!DOCTYPE html>
<html>
<div id="list-item-owner">
<ol id="ol-without-box" style="display:contents">
<!--
The list item owner will be "list-item-owner"; 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>
</div>
</html>