Bug 1706346 Comment 15 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

> ... right now `counter-reset: reversed(section) 7` and `counter-reset: section 7` are identical.

That's true for *author defined* counters (currently), but it does have an effect on the automatic increment value for the built-in `list-item` counter. E.g.
```html
<div style="counter-reset: reversed(list-item) 7; list-style-type: decimal; margin-left: 2em">
 <li>six<li>five
</div>
```
> ... right now `counter-reset: reversed(section) 7` and `counter-reset: section 7` are identical.

Just for clarity: that's true for *author defined* counters (currently), but it does have an effect on the automatic increment value for the built-in `list-item` counter. E.g.
```html
<div style="counter-reset: reversed(list-item) 7; list-style-type: decimal; margin-left: 2em">
 <li>six<li>five
</div>
```

Back to Bug 1706346 Comment 15