Re: [w3c/webcomponents] The is="" attribute is confusing? Maybe we should encourage only ES6 class-based extension. (#509)

@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