Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/counters/reftest.list
<head>
<title>CSS 2.1 Test Suite: Counter scope and nesting on :after</title>
<style type="text/css">
span:before { counter-increment: c 1; content: "B" counters(c,".") "-" }
span:after { counter-increment: c 1; content: "A" counters(c,".") "-" }
body, span#reset:after { counter-reset: c 0; }
</style>
</head>
<body>
<div><span><span id="reset"><span></span></span></span></div>
</body>
</html>