1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4 * You can obtain one at http://mozilla.org/MPL/2.0/.
6 * The origin of this IDL file is
7 * http://fetch.spec.whatwg.org/
11 typedef (Blob or BufferSource or FormData or URLSearchParams or USVString) XMLHttpRequestBodyInit;
12 /* no support for request body streams yet */
13 typedef XMLHttpRequestBodyInit BodyInit;
15 interface mixin Body {
16 readonly attribute boolean bodyUsed;
18 Promise<ArrayBuffer> arrayBuffer();
22 Promise<FormData> formData();
26 Promise<USVString> text();
29 // These are helper dictionaries for the parsing of a
30 // getReader().read().then(data) parsing.
31 // See more about how these 2 helpers are used in
32 // dom/fetch/FetchStreamReader.cpp
34 dictionary FetchReadableStreamReadDataDone {
39 dictionary FetchReadableStreamReadDataArray {