blob: 5deaa680f4f3581a332d87b9d1cd9fb41f05f978 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// http://fetch.spec.whatwg.org/#response-class
enum ResponseType { "basic", "cors", "default", "error", "opaque" };
// FIXME: Add union type: URLSearchParams
typedef (Blob or ArrayBuffer or ArrayBufferView or FormData or USVString) BodyInit;
[
Constructor(optional BodyInit body, optional Dictionary responseInitDict),
ConstructorCallWith=ExecutionContext,
Exposed=(Window,Worker),
RaisesException=Constructor,
ActiveDOMObject,
GarbageCollected,
TypeChecking=Interface,
] interface Response {
[CallWith=ExecutionContext] static Response error();
[CallWith=ExecutionContext, RaisesException] static Response redirect(USVString url, optional unsigned short status = 302);
readonly attribute ResponseType type;
readonly attribute USVString url;
readonly attribute unsigned short status;
readonly attribute boolean ok;
readonly attribute ByteString statusText;
readonly attribute Headers headers;
[RaisesException] Response clone();
readonly attribute ReadableByteStream body;
};
Response implements Body;