mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 07:29:53 +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
14 lines
467 B
HTML
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>
|