- From: TAMURA, Kent <notifications@github.com>
- Date: Wed, 04 Apr 2018 08:43:12 +0000 (UTC)
- To: w3c/webcomponents <webcomponents@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 4 April 2018 08:44:22 UTC
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