Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/CSS2/syntax/case-sensitive-005.xht - WPT Dashboard Interop Dashboard
<head>
<title>CSS Test: Case-sensitivity of counter names</title>
<link rel="match" href="case-sensitive-005-ref.xht"/>
<meta name="assert" content="Counter names are case-sensitive."/>
<style type="text/css">
.reset { counter-reset: test 5 tEsT 9; }
.incr { counter-reset: TEST 0 tEsT 0; counter-increment: TEST 5 tEsT 9; }
span:before { content: counter(tEsT); }
span { color: blue; font: larger bold monospace; }
</style>
</head>
<body>
<p>The number 99 must appear below.</p>
<p><span class="reset"></span><span class="incr"></span></p>
</body>
</html>