aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/XMLHttpRequest.webidl
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-08-10 06:40:16 -0500
committerGitHub <noreply@github.com>2016-08-10 06:40:16 -0500
commitddf4e68c91bbab1a456b0eb86c2a7f0c3268d575 (patch)
tree18f3053e55768ef91c8c2e2950c1500bc0b83126 /components/script/dom/webidls/XMLHttpRequest.webidl
parentf2b861fb24e2322d21c1a990ef25e49d2965b0ce (diff)
parent184b52223091cd822dbacb79eea6bde6b992d2e3 (diff)
downloadservo-ddf4e68c91bbab1a456b0eb86c2a7f0c3268d575.tar.gz
servo-ddf4e68c91bbab1a456b0eb86c2a7f0c3268d575.zip
Auto merge of #12780 - izgzhen:xhr-file-upload, r=Manishearth
Add XHR support for FormData and related fixes + Update IDL for `FormData`, and related fixes + Reuse `htmlformelement::FormDatum` for `formdata.rs` for a uniform representation, and related fixes + Add support for `FormData` branch of XHR `BodyInit`. + Fixes a lot of related WPT tests --- - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [x] There are tests for these changes OR <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12780) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/webidls/XMLHttpRequest.webidl')
-rw-r--r--components/script/dom/webidls/XMLHttpRequest.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/XMLHttpRequest.webidl b/components/script/dom/webidls/XMLHttpRequest.webidl
index 9218a0ea45b..05d7256e767 100644
--- a/components/script/dom/webidls/XMLHttpRequest.webidl
+++ b/components/script/dom/webidls/XMLHttpRequest.webidl
@@ -13,7 +13,7 @@
*/
// https://fetch.spec.whatwg.org/#bodyinit
-typedef (Blob or /*BufferSource or FormData or */DOMString or URLSearchParams) BodyInit;
+typedef (Blob or /*BufferSource or */ FormData or DOMString or URLSearchParams) BodyInit;
enum XMLHttpRequestResponseType {
"",