- From: Hayato Ito <notifications@github.com>
- Date: Tue, 07 Jun 2016 03:21:45 -0700
- To: w3c/webcomponents <webcomponents@noreply.github.com>
- Cc:
Received on Tuesday, 7 June 2016 10:22:15 UTC
Yeah, I think per interface basis might work well here because I could not find any exceptional case.
However, I do not agree the rationale you mentioned :)
For synthetic events, we should always honor the EventInit dictionary.
I meant:
```
let e = new FocusEvent('focus');
console.assert(e.composed, false);
let e = new FocusEvent('focus', { composed: false});
console.assert(e.composed, false);
let e = new FocusEvent('focus', { composed: true}));
console.assert(e.composed, true); <== true only if it is specified in EventInit dictionaly
```
---
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/513#issuecomment-224239744
Received on Tuesday, 7 June 2016 10:22:15 UTC