Re: [csswg-drafts] [css-lists] Should option/optgroup be able to set counters? (#4004)

BTW, this works perfectly fine in Gecko (meaning we create a grid container for it and render its child elements as grid items):
```html
<style>
option {
  display:grid;
  grid-template-columns: 100px auto;
}
</style>
<option><x>a</x><x>a</x>
```

Chrome also creates a box for it, but not a grid container(?), although its devtools still reports that the computed value is `grid-template-columns: 100px 1152px;` as if it were a grid container. Hmm.
Safari doesn't create a box at all.

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

Received on Friday, 21 June 2019 02:28:40 UTC