Bug 1787199 [wpt PR 35620] - Add tests for `VisibilityStateEntry`, a=testonly
[gecko.git] / dom / webidl / Fetch.webidl
blob6a889f898865d23429ecf7f68c0a1dc01ccebe26
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   [Throws]
17   readonly attribute boolean bodyUsed;
18   [NewObject]
19   Promise<ArrayBuffer> arrayBuffer();
20   [NewObject]
21   Promise<Blob> blob();
22   [NewObject]
23   Promise<FormData> formData();
24   [NewObject]
25   Promise<JSON> json();
26   [NewObject]
27   Promise<USVString> text();
30 // These are helper dictionaries for the parsing of a
31 // getReader().read().then(data) parsing.
32 // See more about how these 2 helpers are used in
33 // dom/fetch/FetchStreamReader.cpp
34 [GenerateInit]
35 dictionary FetchReadableStreamReadDataDone {
36   boolean done = false;
39 [GenerateInit]
40 dictionary FetchReadableStreamReadDataArray {
41   Uint8Array value;