Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!doctype html>
<title>Inside list marker and normal text render identically: square</title>
<link rel=match href="marker-text-matches-square-ref.html">
<style>
/*
Avoid using list-style:square directly, because the spec allows the
rendering to deviate from the element's font.
*/
@counter-style my-square {
system: extends square;
}
* {
padding: 0;
margin: 0;
}
ol {
list-style: my-square inside;
}
</style>
<ol>
<li>Filler Text</li>
</ol>