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

HTTP responses for status codes that should have no body #25953

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions http/status.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,48 @@
}
}
},
"204": {
"__compat": {
"description": "204 (No Content)",
"mdn_url": "https://developer.mozilla.org/docs/Web/HTTP/Status/204",
"spec_url": "https://httpwg.org/specs/rfc9110.html#status.204",
"support": {
"chrome": {
"version_added": "1",
"notes": "This status code describes a HTTP response with no body. If a server erroneously includes data after the headers, Chrome tolerates up to 4 bytes of invalid data. See [Chromium issue 1934](https://codereview.chromium.org/1934)."
},
"chrome_android": "mirror",
"edge": {
"version_added": "12"
},
"firefox": {
"version_added": "1",
"notes": "This status code describes a HTTP response with no body. If a server erroneously includes data after the headers, Firefox tolerates in excess of a kilobyte of invalid data. See [Bug 1356614](https://bugzil.la/1356614)"
},
"firefox_android": "mirror",
"ie": {
"version_added": "4"
},
"oculus": "mirror",
"opera": {
"version_added": "2"
},
"opera_android": "mirror",
"safari": {
"version_added": "1"
},
"safari_ios": "mirror",
"samsunginternet_android": "mirror",
"webview_android": "mirror",
"webview_ios": "mirror"
},
"status": {
"experimental": false,
"standard_track": true,
"deprecated": false
}
}
},
"308": {
"__compat": {
"mdn_url": "https://developer.mozilla.org/docs/Web/HTTP/Status/308",
Expand Down
Loading