mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 12:37:37 +00:00
50 lines
1.8 KiB
Plaintext
50 lines
1.8 KiB
Plaintext
/* -*- Mode: IDL; tab-width: 1; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
*
|
|
* The origin of this IDL file is
|
|
* https://fetch.spec.whatwg.org/#request-class
|
|
*/
|
|
|
|
typedef (Request or USVString) RequestInfo;
|
|
|
|
[Constructor(RequestInfo input, optional RequestInit init),
|
|
Exposed=(Window,Worker),
|
|
Func="mozilla::dom::Headers::PrefEnabled"]
|
|
interface Request {
|
|
readonly attribute ByteString method;
|
|
readonly attribute USVString url;
|
|
[SameObject] readonly attribute Headers headers;
|
|
|
|
// FIXME(nsm) Bug 1119037: readonly attribute RequestContext context;
|
|
readonly attribute DOMString referrer;
|
|
readonly attribute RequestMode mode;
|
|
readonly attribute RequestCredentials credentials;
|
|
readonly attribute RequestCache cache;
|
|
|
|
[NewObject] Request clone();
|
|
};
|
|
Request implements Body;
|
|
|
|
dictionary RequestInit {
|
|
ByteString method;
|
|
HeadersInit headers;
|
|
BodyInit body;
|
|
RequestMode mode;
|
|
RequestCredentials credentials;
|
|
RequestCache cache;
|
|
};
|
|
|
|
// FIXME(nsm): Bug 1119037 Implement RequestContext.
|
|
|
|
// cors-with-forced-preflight is internal to the Fetch spec, but adding it here
|
|
// allows us to use the various conversion conveniences offered by the WebIDL
|
|
// codegen. The Request constructor has explicit checks to prevent it being
|
|
// passed as a valid value, while Request.mode never returns it. Since enums
|
|
// are only exposed as strings to client JS, this has the same effect as not
|
|
// exposing it at all.
|
|
enum RequestMode { "same-origin", "no-cors", "cors", "cors-with-forced-preflight" };
|
|
enum RequestCredentials { "omit", "same-origin", "include" };
|
|
enum RequestCache { "default", "no-store", "reload", "no-cache", "force-cache", "only-if-cached" };
|