Re: [w3c/webcomponents] Events whose composed flag should be true (#513)

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