Files
ladybird/Tests/LibWeb/Layout/input/css-counters/counter-style-system-default.html
Callum Law f6eccc629c LibWeb: Default @counter-style system descriptor to symbolic
The spec says that the `system` descriptor defaults to `symbolic` but
previously we just ignored any `@counter-style` rules without a `system`
descriptor
2026-02-27 16:25:53 +00:00

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>