diff options
author | Moonchild <mcwerewolf@gmail.com> | 2018-04-24 19:34:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-24 19:34:41 +0200 |
commit | 844da2ccc666afa713ca1e3e7caa077de4a9250d (patch) | |
tree | ee10f014c8e45cf67b83541f0c0cd80a8bf755e4 /dom/webidl/Response.webidl | |
parent | c80777a81cddee2e8cacf2a21242630bce9fa7d9 (diff) | |
parent | 27e021136b6e58143f95ff3df37b58ed699e8b06 (diff) | |
download | UXP-844da2ccc666afa713ca1e3e7caa077de4a9250d.tar UXP-844da2ccc666afa713ca1e3e7caa077de4a9250d.tar.gz UXP-844da2ccc666afa713ca1e3e7caa077de4a9250d.tar.lz UXP-844da2ccc666afa713ca1e3e7caa077de4a9250d.tar.xz UXP-844da2ccc666afa713ca1e3e7caa077de4a9250d.zip |
Merge pull request #243 from janekptacijarabaci/fetch_response_body_null_1
moebius#312: DOM - Fix incorrect TypeError: Response body is given with a null body status
Diffstat (limited to 'dom/webidl/Response.webidl')
-rw-r--r-- | dom/webidl/Response.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dom/webidl/Response.webidl b/dom/webidl/Response.webidl index 8713146aa..08f31fe29 100644 --- a/dom/webidl/Response.webidl +++ b/dom/webidl/Response.webidl @@ -7,7 +7,7 @@ * https://fetch.spec.whatwg.org/#response-class */ -[Constructor(optional BodyInit body, optional ResponseInit init), +[Constructor(optional BodyInit? body, optional ResponseInit init), Exposed=(Window,Worker)] interface Response { [NewObject] static Response error(); |