Backed out changeset 06f41c22f3a6 (bug 1888460) for causing linux xpcshell failures...
[gecko.git] / dom / webidl / Fetch.webidl
blob1a6eb90823c57fc02e5809138036828b169f33c2
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/.
5  *
6  * The origin of this IDL file is
7  * http://fetch.spec.whatwg.org/
8  */
10 typedef object JSON;
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;
17   [NewObject]
18   Promise<ArrayBuffer> arrayBuffer();
19   [NewObject]
20   Promise<Blob> blob();
21   [NewObject]
22   Promise<FormData> formData();
23   [NewObject]
24   Promise<JSON> json();
25   [NewObject]
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
33 [GenerateInit]
34 dictionary FetchReadableStreamReadDataDone {
35   boolean done = false;
38 [GenerateInit]
39 dictionary FetchReadableStreamReadDataArray {
40   Uint8Array value;