diff --git a/index.bs b/index.bs index 65701a3..eb37b90 100644 --- a/index.bs +++ b/index.bs @@ -44,13 +44,17 @@ urlPrefix: https://tools.ietf.org/html/draft-ietf-httpbis-header-structure; spec text: boolean; url: #section-3.9 type: abstract-op text: serialize Structured Header; url: #section-4.1 +urlPrefix: https://html.spec.whatwg.org/multipage/browsing-the-web.html; + type: dfn + text: create navigation params by fetching; url: #create-navigation-params-by-fetching Introduction {#intro} @@ -119,10 +123,8 @@ The `Sec-Fetch-Dest` HTTP request header exposes a Sec-Fetch-Dest = sh-token ``` -Valid `Sec-Fetch-Dest` values include "`audio`", "`audioworklet`", "`document`", "`embed`", -"`empty`", "`font`", "`frame`", "`iframe`", "`image`", "`manifest`", "`object`", "`paintworklet`", -"`report`", "`script`", "`serviceworker`", "`sharedworker`", "`style`", "`track`", "`video`", -"`worker`", "`xslt`". +Valid `Sec-Fetch-Dest` values include the set of valid [=request=] [=request/destinations=] +defined by [[!Fetch]]. In order to support forward-compatibility with as-yet-unknown request types, servers SHOULD ignore this header if it contains an invalid value. @@ -154,7 +156,7 @@ To set the `Sec-Fetch-Dest` header for a [= 3. If |r|'s [=request/destination=] is the empty string, set |header|'s value to the string "`empty`". Otherwise, set |header|'s value to |r|'s [=request/destination=]. - + Note: We map Fetch's empty string [=request/destination=] onto an explicit "`empty`" [=structured header/token=] in order to simplify processing. @@ -231,7 +233,7 @@ To set the `Sec-Fetch-Site` header for a [= 1. If |url| is [=same origin=] with |r|'s [=request/origin=], [=iteration/continue=]. 2. Set |header|'s value to `cross-site`. - + 3. If |r|'s [=request/origin=] is not [=same site=] with |url|'s [=url/origin=], then [=iteration/break=]. 4. Set |header|'s value to `same-site`. @@ -266,7 +268,7 @@ To set the `Sec-Fetch-User` header for a [=
    1. Assert: |r|'s [=request/url=] is a [=potentially trustworthy URL=]. - 2. If |r| is not a [=navigation request=], or if |r|'s [=request/user activation=] is + 2. If |r| is not a [=navigation request=], or if |r|'s [=request/user-activation=] is `false`, return. 3. Let |header| be a [=Structured Header=] whose value is a [=structured header/token=]. @@ -283,7 +285,7 @@ Integration with Fetch and HTML {#fetch-integration} =========================================== To support `Sec-Fetch-User`, [=request=] has a [=request/user-activation=] which is false, -unless otherwise populated by HTML's [=process a navigate fetch=] algorithm. +unless otherwise populated by HTML's [=create navigation params by fetching=] algorithm. Fetch Metadata headers are appended to outgoing requests from within Fetch's "HTTP-network-or-cache" algorithm, using the following steps. Consult that specification for integration details [[!FETCH]]. @@ -336,13 +338,13 @@ Note: For the special case of `Sec-Fetch-Site: None`, it seems reasonable to mai through redirects in order to support the common case of copy/pasting shortlinks into the address bar. That is, if a user agent chooses to treat an address-bar navigation to `https://sho.rt/link` as `Sec-Fetch-Site: none`, a post-redirect navigation to `https://target.com/long/path/goes/here` -should likewise assert `Sec-Fetch-Site: none`. +should likewise assert `Sec-Fetch-Site: none`. The `Sec-` Prefix {#sec-prefix} ------------------------------- Each of the headers defined in this document is prefixed with `Sec-`, which makes them all -[=forbidden header names=], and therefore unmodifiable from JavaScript. This will prevent +[=forbidden response-header names=], and therefore unmodifiable from JavaScript. This will prevent malicious websites from convincing user agents to send forged metadata along with requests, which should give sites a bit more confidence in their ability to respond reasonably to the advertised information. @@ -387,7 +389,7 @@ would be ideal to align on behavior for those which are likely to be common. Sme * Ctrl-click on a link: the same arguments and conclusions apply here as apply to a link's context menu, discussed directly above. -* Navigation through history (e.g. a user agent's "back" button): +* Navigation through history (e.g. a user agent's "back" button): * Drag-and-drop: It seems reasonable to distinguish behavior here based upon the source of the dragged content. If content is dragged from a tab, the user agent should be able to ascertain @@ -410,7 +412,7 @@ satisfy two goals: 2. Developers can recognize extensions' requests so that they can be exempted from the server's Fetch Metadata logic if it chooses to do so. This increases developers' ability to confidently deploy Fetch Metadata protections without undermining legitimate user interests. - + With these goals in mind, user agents are encouraged to implement the following behaviors: 1. If an extension does not have permission to access to a given URL, its requests to that URL could @@ -429,7 +431,7 @@ Vary {#vary} If a given endpoint's response depends upon the values the client delivers in a [=Fetch metadata header=], developers should be careful to include an appropriate `Vary` header -[[RFC7231]], in order to ensure that caches handle the response appropriately. For example, +[[RFC9110]], in order to ensure that caches handle the response appropriately. For example, `Vary: Accept-Encoding, Sec-Fetch-Site`. Header Bloat {#bloat}