Manuel Zahariev

Results 14 issues of Manuel Zahariev

Ladybird [now](https://github.com/LadybirdBrowser/ladybird/pull/720) supports [CSS counters](https://drafts.csswg.org/css-lists-3/#auto-numbering), but [cannot handle](https://github.com/LadybirdBrowser/ladybird/pull/720#issuecomment-2248243241) the `reversed` function. ```html div::before { content: counter(item) ": "; } body { counter-reset: reversed(item); } div { counter-increment: item -1; }...

Ladybird [now](https://github.com/LadybirdBrowser/ladybird/pull/720) supports [CSS counters](https://drafts.csswg.org/css-lists-3/#auto-numbering). Nice! 😎 However, content containing counters does not update on changes to counters. On, no! 😦 ### Reproduce 1. Think of a counter, say, `item`...

Fixes #4866. A very simple change + unit tests. FIXME: Rebuilding layout tree after changes to a `reversed` counter are not accounted for: - More complex: the tree headed by...

Fixes #4867 : - [Reversed counters](https://drafts.csswg.org/css-lists-3/#css-counter-reversed) are in the spec. - Firefox supports them, but not Chrome. - Implementing this :point_down: would be a lot cleaner with reversed counters: -...

stale