-
Notifications
You must be signed in to change notification settings - Fork 131
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make FormData a cloneable object #55
Comments
Was this something that should be dealt with now that the referenced landing happened? |
Yeah maybe, although I haven't seen much interest. Do you happen to know if in the implementation we effectively clone |
FWIW, in Blink's XHR implementation we synchronously serialize the passed FormData; nothing shared with the cloning implementation, no script-visible side effects, etc. |
Apparently Firefox already supports this. Is there interest from Chrome in supporting this @inexorabletash? @youennf WebKit? @travisleithead Edge? |
SGTM; not high on the priority list but seems doable. Tests would be great. |
This doesn't hold true (anymore), see dexie/Dexie.js#861 |
Well, onmessage = e => console.log(e.data)
postMessage(new FormData(),"*"); does log a |
Is this now supported? |
This can be done after whatwg/html#727 lands.
The text was updated successfully, but these errors were encountered: