The spec says that the `system` descriptor defaults to `symbolic` but previously we just ignored any `@counter-style` rules without a `system` descriptor
11 lines
191 B
HTML
11 lines
191 B
HTML
<!doctype html>
|
|
<style>
|
|
@counter-style counter {
|
|
symbols: "*";
|
|
}
|
|
|
|
div::after {
|
|
content: counter(a, counter);
|
|
}
|
|
</style>
|
|
<div style="counter-reset: a 5"></div>
|