Re: [whatwg/xhr] Make FormData a cloneable object (#55)

Well,
```js
onmessage = e => console.log(e.data)
postMessage(new FormData(),"*");
```
does log a `FormData` object in Firefox Nightly and an exception in Chrome Canary. However, the serialization steps for a given platform object are also passed a _forStorage_ boolean. I suspect Firefox throws if that is true, based on your analysis.

-- 
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/xhr/issues/55#issuecomment-508062739

Received on Wednesday, 3 July 2019 11:58:20 UTC