Re: [w3c/webcomponents] Need callback for form submit data (#187)

ok, I'll apply ```formdata``` event type name.

I just started experimental implementation with the following behavior:

- Event type name is ```formdata```
- Event interface is as the following:
```
[Exposed=Window]
interface FormDataEvent : Event {
  readonly attribute FormData formData;
};
```
- The event is dispatched at the beginning of "[construct the form data set](https://html.spec.whatwg.org/multipage/form-control-infrastructure.html#constructing-form-data-set)" algorithm
-  it's synchronous, bubbles, is not cancelable.


-- 
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/187#issuecomment-378526170

Received on Wednesday, 4 April 2018 08:44:22 UTC