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

20 lines
429 B
HTML

<!DOCTYPE html>
<head>
<!--
Confirms drawing a ul. Font size can be controlled so MarkerPaintable sizes should match reference.
FIXME: At some point, `::marker` should support `content`. https://drafts.csswg.org/css-content-3/#propdef-content
-->
<style>
.B li::marker { font-size: .5em; }
</style>
</head>
<body>
<ul class="A">
<li>Three</li>
<li>Four</li>
</ul>
<ul class="B">
<li>One</li>
<li>Two</li>
</ul>
</body>