Re: [csswg-drafts] [css-lists] Contradictory normative requirements for implicit 'list-item' counter? (#4167)

Another question, but I'll put it in the same issue for now: how does the "UA and host languages" requirement interact with `counter-increment`?

For example, given

```html
<ol>
  <li>First top-level item
  <li value=5>Second top-level item, value=5
    <ol start=3>
      <li>First second-level item, list start=3
      <li>Second second-level item, list start=3
         <ol reversed>
           <li>First third-level item in reversed list
           <li>Second third-level item in reversed list
           <li>Third third-level item in reversed list
           <li>Fourth third-level item in reversed list
         </ol>
      <li>Third second-level item, list start=3
  <li>Third top-level item
</ol>
```

plus

```css
ol::marker { content: counters(list-item,'.') '.'; }
ol { counter-increment: list-item 2; }
```

what happens?

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

Received on Thursday, 1 August 2019 22:59:17 UTC