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
Typed array support for XMLHttpRequest's send API #20434
Changes from 1 commit
File filter...
Jump to…
typed array support for XMLHttpRequest's send API
- Loading branch information
| @@ -6,37 +6,7 @@ | ||
| [Consume String request's body as formData] | ||
| expected: FAIL | ||
|
|
||
| [Consume Int8Array request's body as text] | ||
| expected: FAIL | ||
| [Consume Int8Array request's body as blob] | ||
| expected: FAIL | ||
|
|
||
| [Consume Int8Array request's body as arrayBuffer] | ||
| expected: FAIL | ||
| [Consume ArrayBuffer request's body as text] | ||
| expected: FAIL | ||
|
|
||
| [Consume Float32Array request's body as blob] | ||
| expected: FAIL | ||
| [Consume Float32Array request's body as arrayBuffer] | ||
| expected: FAIL | ||
|
|
||
| [Consume Float32Array request's body as JSON] | ||
| expected: FAIL | ||
| [Consume DataView request's body as text] | ||
| expected: FAIL | ||
|
|
||
| [Consume DataView request's body as blob] | ||
| expected: FAIL | ||
| [Consume DataView request's body as arrayBuffer] | ||
| expected: FAIL | ||
|
|
||
| [Consume DataView request's body as JSON] | ||
| [Trying to consume bad JSON text as JSON: 'undefined'] | ||
jdm
Member
|
||
| expected: FAIL | ||
|
|
||
| [Consume FormData request's body as FormData] | ||
| @@ -68,4 +38,3 @@ | ||
| [Consume Float32Array request's body as text] | ||
| expected: FAIL | ||
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
I had a little doubt, whether it should be here ?