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
20 lines
429 B
HTML
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>
|