- From: Andrea Giammarchi <notifications@github.com>
- Date: Mon, 20 Feb 2017 08:22:46 -0800
- To: w3c/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Monday, 20 February 2017 16:23:41 UTC
@csuwildcat I like your refinement, I just think maybe `extensions` should be kept singular for consistency with the rest of the language (CSS has no plural forms, only eventually third parts)
```css
form *:extension(button-like) {}
extension(button-like) and extension(select-like) {}
```
This would play nice with the semantic used in
```js
customElements.defineExtension(
'button-like',
{
implements: [
HTMLImageBehavior,
HTMLButtonBehavior,
HTMLButtonAppearance
]
}
);
```
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/509#issuecomment-281122056
Received on Monday, 20 February 2017 16:23:41 UTC