Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / Request.webidl
blob2ea1e8eaf313fe86e59e7e241cf69e7da98b15d4
1 /* -*- Mode: IDL; tab-width: 1; 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  * https://fetch.spec.whatwg.org/#request-class
8  */
10 typedef (Request or USVString) RequestInfo;
12 [Constructor(RequestInfo input, optional RequestInit init),
13  Exposed=(Window,Worker),
14  Func="mozilla::dom::Headers::PrefEnabled"]
15 interface Request {
16   readonly attribute ByteString method;
17   readonly attribute USVString url;
18   readonly attribute Headers headers;
20   readonly attribute DOMString referrer;
21   readonly attribute RequestMode mode;
22   readonly attribute RequestCredentials credentials;
24   Request clone();
27 Request implements Body;
29 dictionary RequestInit {
30   ByteString method;
31   HeadersInit headers;
32   BodyInit body;
33   RequestMode mode;
34   RequestCredentials credentials;
37 enum RequestMode { "same-origin", "no-cors", "cors", "cors-with-forced-preflight" };
38 enum RequestCredentials { "omit", "same-origin", "include" };