2014-07-25 00:50:32 +00:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; 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/#response-class
|
|
|
|
*/
|
|
|
|
|
|
|
|
[Constructor(optional BodyInit body, optional ResponseInit init),
|
2015-02-22 09:52:10 +00:00
|
|
|
Exposed=(Window,Worker)]
|
2014-07-25 00:50:32 +00:00
|
|
|
interface Response {
|
2015-01-08 00:24:40 +00:00
|
|
|
[NewObject] static Response error();
|
2014-12-26 17:44:09 +00:00
|
|
|
[Throws,
|
|
|
|
NewObject] static Response redirect(USVString url, optional unsigned short status = 302);
|
2014-07-25 00:50:32 +00:00
|
|
|
|
|
|
|
readonly attribute ResponseType type;
|
|
|
|
|
2014-11-20 11:58:00 +00:00
|
|
|
readonly attribute USVString url;
|
2014-07-25 00:50:32 +00:00
|
|
|
readonly attribute unsigned short status;
|
2015-01-28 01:34:34 +00:00
|
|
|
readonly attribute boolean ok;
|
2014-07-25 00:50:32 +00:00
|
|
|
readonly attribute ByteString statusText;
|
2015-01-08 00:24:40 +00:00
|
|
|
[SameObject] readonly attribute Headers headers;
|
2014-07-25 00:50:32 +00:00
|
|
|
|
2015-02-20 01:24:24 +00:00
|
|
|
[Throws,
|
|
|
|
NewObject] Response clone();
|
2016-01-12 20:15:12 +00:00
|
|
|
|
|
|
|
[ChromeOnly, NewObject, Throws] Response cloneUnfiltered();
|
2014-07-25 00:50:32 +00:00
|
|
|
};
|
|
|
|
Response implements Body;
|
|
|
|
|
|
|
|
dictionary ResponseInit {
|
|
|
|
unsigned short status = 200;
|
|
|
|
// WebIDL spec doesn't allow default values for ByteString.
|
|
|
|
ByteString statusText;
|
|
|
|
HeadersInit headers;
|
|
|
|
};
|
|
|
|
|
2015-08-31 21:26:29 +00:00
|
|
|
enum ResponseType { "basic", "cors", "default", "error", "opaque", "opaqueredirect" };
|