Re: [whatwg/dom] Inform event handler about the default action of an event (#382)

We generally moved away from default actions being a thing since the API doesn't see them that way. That is, the event flow works like this:
```js
if(target.dispatchEvent(event))
  someAction()
```
So _event_ cannot really know about the action that might occur unless we pass that along as state somehow.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/382#issuecomment-265328219

Received on Wednesday, 7 December 2016 01:28:49 UTC