- From: Domenic Denicola <notifications@github.com>
- Date: Fri, 06 Jan 2017 08:09:20 -0800
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 6 January 2017 16:10:12 UTC
domenic commented on this pull request. > + +<ol> + <li>Let <var>body</var> be <var>request</var>'s <a for=request>body</a>. + + <li><p>If <var>body</var> is null, then <a>queue a fetch task</a> on <var>request</var> to + <a>process request end-of-body</a> for <var>request</var> and abort these steps. + + <li> + <p>Let <var>read</var> be the result of <a lt="read a chunk" for=ReadableStream>reading a + chunk</a> from <var>body</var>'s <a for=body>stream</a>. + + <ul> + <li> + <p>When <var>read</var> is fulfilled with an object whose <code>done</code> + property is false and whose <code>value</code> property is a + <code>Uint8Array</code> object, run these substeps: Oh, I see, I was focusing on the Uint8Array issue, but the "object whose done property is false" part is the imprecise part. In particular, what if `obj.done` or `obj.value` is a throwing getter? Let me push a commit to fix. -- 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/pull/449
Received on Friday, 6 January 2017 16:10:12 UTC