Skip to content

Commit

Permalink
Adjust language around omitting request header
Browse files Browse the repository at this point in the history
  • Loading branch information
cfredric committed Jun 5, 2024
1 parent 8e3e090 commit e6ce2f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,11 +89,11 @@ Browsers that do not support the proposed headers will still receive the appropr
Sec-Fetch-Storage-Access: <access-status>
```
This is a [fetch metadata request header](https://developer.mozilla.org/en-US/docs/Glossary/Fetch_metadata_request_header) (with a [forbidden header name](https://developer.mozilla.org/en-US/docs/Glossary/Forbidden_header_name)), where the `<access-status>` directive is one of the following:
* `none`: the fetch's context does not have access to unpartitioned cookies, and does not have the `storage-access` permission. The header may also be omitted as a whole in this case.
* `none`: the fetch's context does not have access to unpartitioned cookies, and does not have the `storage-access` permission.
* `inactive`: the fetch's context has the `storage-access` permission, but has not opted into using it; and does not have unpartitioned cookie access through some other means.
* `active`: the fetch's context has unpartitioned cookie access.

The user agent may omit this header on same-site requests, since those requests do not involve cross-site cookies.
The user agent may omit this header on same-site requests, since those requests cannot involve cross-site cookies. The user agent must include this header on cross-site requests.

### Response headers

Expand Down

0 comments on commit e6ce2f3

Please sign in to comment.