Skip to content

Commit

Permalink
fix(http): copy-paste err in Origin-Agent-Cluster directives (#32799)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsmth committed Mar 23, 2024
1 parent 69f98c6 commit 1f954d6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions files/en-us/web/http/headers/origin-agent-cluster/index.md
Expand Up @@ -9,7 +9,7 @@ browser-compat: http.headers.Origin-Agent-Cluster

{{HTTPSidebar}}{{SeeCompatTable}}

The **`Origin-Agent-Cluster`** HTTP response header is used to request that the associated {{domxref("Document")}} should be placed in an _origin-keyed agent cluster_. This means that operating system resources (for example, the operating system process) used to evaluate the document should be shared only with other documents from the same {{glossary("origin")}}.
The **`Origin-Agent-Cluster`** HTTP response header is used to request that the associated {{domxref("Document")}} should be placed in an _origin-keyed [agent cluster](https://tc39.es/ecma262/#sec-agent-clusters)_. This means that operating system resources (for example, the operating system process) used to evaluate the document should be shared only with other documents from the same {{glossary("origin")}}.

The effect of this is that a resource-intensive document will be less likely to degrade the performance of documents from other origins.

Expand Down Expand Up @@ -64,9 +64,8 @@ Origin-Agent-Cluster: <boolean>

- `<boolean>`

- : `?1` indicates that the user-agent prefers a mobile experience (true).

`?0` indicates that user-agent does not prefer a mobile experience (false).
- : `?1` indicates that the associated {{domxref("Document")}} should be placed in an origin-keyed agent cluster.
Values other than `?1` are ignored (e.g., the `?0` structured field for false).

## Examples

Expand Down

0 comments on commit 1f954d6

Please sign in to comment.