mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 10:07:15 +02:00
37 lines
900 B
HTML
37 lines
900 B
HTML
<!DOCTYPE html>
|
|
<html id="html">
|
|
<!doctype html>
|
|
<link rel="match" href="../../expected/css/content-for-marker-tiered-ref.html" />
|
|
<head id="head">
|
|
<style id="style">
|
|
|
|
ol, ul { counter-reset: item; }
|
|
li { counter-increment: item; }
|
|
|
|
/* WARNING: This will not work for list items that are descendents but not children */
|
|
ul>li::marker { content: '• '; }
|
|
ol>li::marker { content: counters(item, '.') ': '; }
|
|
|
|
</style>
|
|
</head>
|
|
<body id="body">
|
|
<ol>
|
|
<li>One</li>
|
|
<ul>
|
|
<li>One-One (bullet)</li>
|
|
<li>One-Two (bullet)</li>
|
|
<ul>
|
|
<li>One-Two-One(bullet)</li>
|
|
<ol>
|
|
<li>One-Two-One-One</li>
|
|
<li>One-Two-One-Two</li>
|
|
</ol>
|
|
<li>One-Two-Two(bullet)</li>
|
|
</ul>
|
|
<li>One-Three(bullet)</li>
|
|
</ul>
|
|
<li>Two</li>
|
|
</ol>
|
|
</body>
|
|
</html>
|