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

Origin Header: Firefox sent it for POST requests since v59 #2943

Merged
merged 2 commits into from Oct 30, 2018
Merged
Changes from all commits
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
44 changes: 36 additions & 8 deletions http/headers/origin.json
Expand Up @@ -18,14 +18,42 @@
"edge_mobile": {
"version_added": true
},
"firefox": {
"version_added": true,
"notes": "Not sent with <code>POST</code> requests, see <a href='https://bugzil.la/446344'>bug 446344</a>."
},
"firefox_android": {
"version_added": true,
"notes": "Not sent with <code>POST</code> requests, see <a href='https://bugzil.la/446344'>bug 446344</a>."
},
"firefox": [
{
"version_added": "59",
"flags": [
{
"name": "network.http.sendOriginHeader",
"type": "preference",
"value_to_set": "true"
}
],
"notes": "Sent with non-CORS requests since Fx59, unless they are <code>GET</code> or <code>HEAD</code>."
},
{
"version_added": true,
"partial_implementation": true,
"notes": "Not sent with <code>POST</code> requests until Firefox 58, see <a href='https://bugzil.la/446344'>bug 446344</a>."
}
],
"firefox_android": [
{
"version_added": "59",
"flags": [
{
"name": "network.http.sendOriginHeader",
"type": "preference",
"value_to_set": "true"
}
],
"notes": "Sent with non-CORS requests since Fx59, unless they are <code>GET</code> or <code>HEAD</code>."
},
{
"version_added": true,
"partial_implementation": true,
"notes": "Not sent with <code>POST</code> requests until Firefox 58, see <a href='https://bugzil.la/446344'>bug 446344</a>."
}
],
"ie": {
"version_added": true
},
Expand Down