Re: [webcomponents] Need "slotting changed" event (#288)

If we have none, how about introducing `preventCapturing` property, (any better name is welcome), to an Event interface to control a capturing phase?

```webidl
dictionary EventInit {
  boolean bubbles = false;
  boolean preventCapturing = false;
  boolean cancelable = false;
};
```

I think our engines would get a benefit becuase it reduces a burden of an event dispatching.


---
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/288#issuecomment-183189664

Received on Friday, 12 February 2016 05:58:48 UTC