Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-lists/content-property/marker-text-matches-circle.html - WPT Dashboard Interop Dashboard
<!doctype html>
<title>Inside list marker and normal text render identically: circle</title>
<link rel=match href="marker-text-matches-circle-ref.html">
<style>
/*
Avoid using list-style:circle directly, because the spec allows the
rendering to deviate from the element's font.
*/
@counter-style my-circle {
system: extends circle;
}
* {
padding: 0;
margin: 0;
}
ol {
list-style: my-circle inside;
}
</style>
<ol>
<li>Filler Text</li>
</ol>