mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 23:50:06 +00:00
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
12 lines
392 B
HTML
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>
|