Re: [csswg-drafts] [css-lists-3] Inconsist `counter()` syntax between CSS 2 and 3 (#5795)

The current situation is that WebKit and Gecko aligned made `counter(name, none)` as per the 2nd part of the previous resolution and css-lists, while Blink still accepts that as per the 1st part of the resolution and css2.

```html
<!DOCTYPE html>
<style>
div::after {
  content: "counter(name, none) is NOT valid";
  content: "counter(name, none) is valid" counter(name, none);
}
</style>
<div></div>
```

Agenda+ to confirm what to do, because the previous resolution is self-contradictory.

-- 
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/5795#issuecomment-4020512775 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Monday, 9 March 2026 01:22:34 UTC