[whatwg/fetch] A new Request(input, init) constructor step sounds weird. (#1061)

https://fetch.spec.whatwg.org/#dom-request
A step 38th states:
"38. If inputBody is body and input is disturbed or locked, then throw a TypeError."

However If input is string, asking if it is disturbed or locked doesn't make sense because [disturbed](https://fetch.spec.whatwg.org/#concept-body-disturbed) and locked are defined only on a Body mixin.
It should be 
"38. If inputBody is body and a Request object, and input is disturbed or locked, then throw a TypeError." ?


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/fetch/issues/1061

Received on Monday, 27 July 2020 02:17:23 UTC