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
13 lines
333 B
HTML
13 lines
333 B
HTML
<!DOCTYPE html>
|
|
<!--
|
|
Confirms MarkerPaintable sizes for reference list.
|
|
FIXME: Left alignment cuts into border.
|
|
-->
|
|
<body>
|
|
<ol start=7>
|
|
<li>Seven</li>
|
|
<li value="-112">Minus one hundred and twelve</li> <!-- Confirms negative ordinal -->
|
|
<li value="1024">Two to the power of ten</li>
|
|
<li value="11">Eleven</li>
|
|
</ol>
|
|
</body>
|