diff --git a/Overview.html b/Overview.html index 1a3eb94cd..f4ff1048a 100644 --- a/Overview.html +++ b/Overview.html @@ -7,7 +7,7 @@

Fetch

-

Living Standard — Last Updated 10 April 2016

+

Living Standard — Last Updated 14 April 2016

Participate: @@ -3912,7 +3912,8 @@

6.1 Headers class

6.2 Body mixin

typedef any JSON;
-typedef (Blob or BufferSource or FormData or URLSearchParams or USVString) BodyInit;
+typedef (Blob or BufferSource or FormData or URLSearchParams or USVString) BodyInit; +typedef (BodyInit or ReadableStream) ResponseBodyInit;

To extract a body and a `Content-Type` value from @@ -3977,6 +3978,9 @@

6.2 Body mixin

utf-8 encode on object.

Set Content-Type to `text/plain;charset=UTF-8`. + +

ReadableStream +

Set stream to object.

  • @@ -4621,7 +4625,7 @@

    6.3 Request class

    6.4 Response class

    -
    [Constructor(optional BodyInit? body = null, optional ResponseInit init),
    +
    [Constructor(optional ResponseBodyInit? body = null, optional ResponseInit init),
      Exposed=(Window,Worker)]
     interface Response {
       [NewObject] static Response error();
    diff --git a/Overview.src.html b/Overview.src.html
    index 709b8b350..2497d8d07 100644
    --- a/Overview.src.html
    +++ b/Overview.src.html
    @@ -3842,7 +3842,8 @@ 

    Headers class

    Body mixin

    typedef any JSON;
    -typedef (Blob or BufferSource or FormData or URLSearchParams or USVString) BodyInit;
    +typedef (Blob or BufferSource or FormData or URLSearchParams or USVString) BodyInit; +typedef (BodyInit or ReadableStream) ResponseBodyInit;

    To extract a body and a `Content-Type` value from @@ -3907,6 +3908,9 @@

    Body mixin

    utf-8 encode on object.

    Set Content-Type to `text/plain;charset=UTF-8`. + +

    ReadableStream +

    Set stream to object.

  • @@ -4551,7 +4555,7 @@

    Request class

    Response class

    -
    [Constructor(optional BodyInit? body = null, optional ResponseInit init),
    +
    [Constructor(optional ResponseBodyInit? body = null, optional ResponseInit init),
      Exposed=(Window,Worker)]
     interface Response {
       [NewObject] static Response error();