Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disallow streaming upload on HTTP/1.1 connections #1444

Merged
merged 3 commits into from Jun 16, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions fetch.bs
Expand Up @@ -5434,8 +5434,8 @@ optional boolean <var>forceNewConnection</var> (default false), run these steps:
<a for="fetch timing info">post-redirect start time</a>, and <var>fetchParams</var>'s
<a for="fetch params">cross-origin isolated capability</a>.

<li><p>If <var>connection</var> is neither an HTTP/2 nor an HTTP/3 connection,
<var>request</var>'s <a for=request>body</a> is non-null, and <var>request</var>'s
<li><p>If <var>connection</var> is an HTTP/1.x connection, <var>request</var>'s
domenic marked this conversation as resolved.
Show resolved Hide resolved
<a for=request>body</a> is non-null, and <var>request</var>'s
<a for=request>body</a>'s <a for=body>source</a> is null, then return a <a>network error</a>.
yutakahirano marked this conversation as resolved.
Show resolved Hide resolved

<li>Set <var>timingInfo</var>'s <a for="fetch timing info">final network-request start time</a>
Expand Down