Bug 1526591 - Remove devtools.inspector.shapesHighlighter.enabled pref. r=rcaliman
[gecko.git] / dom / webidl / Fetch.webidl
blob02ff73a2c197f64460d2ee338dbf32983f0df4eb
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) BodyInit;
13 [NoInterfaceObject, Exposed=(Window,Worker)]
14 interface Body {
15   [Throws]
16   readonly attribute boolean bodyUsed;
17   [Throws]
18   Promise<ArrayBuffer> arrayBuffer();
19   [Throws]
20   Promise<Blob> blob();
21   [Throws]
22   Promise<FormData> formData();
23   [Throws]
24   Promise<JSON> json();
25   [Throws]
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 dictionary FetchReadableStreamReadDataDone {
34   boolean done = false;
37 dictionary FetchReadableStreamReadDataArray {
38   Uint8Array value;