mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-11 17:37:33 +02:00
The spec says that the `system` descriptor defaults to `symbolic` but previously we just ignored any `@counter-style` rules without a `system` descriptor
12 lines
191 B
HTML
12 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>
|