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

It looks DragEvent has a DataTransfer property:

https://html.spec.whatwg.org/#dragevent
```
interface DragEvent : MouseEvent {
  readonly attribute DataTransfer? dataTransfer;
};
```

DataTransfer object does not have any node information which must be protected.
https://html.spec.whatwg.org/#datatransfer

It looks we can make Drag Events composed events without any further special retargeting.

If I am wrong, please correct me.


---
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-231896857

Received on Monday, 11 July 2016 23:36:07 UTC