<?xml version="1.0" encoding="UTF-8"?>
<!--
    This XML document is the output of clean-for-DTD.xslt; a tool that strips
    extensions to RFC2629(bis) from documents for processing with xml2rfc.
-->
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?><!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.0.40 -->
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc subcompact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<!DOCTYPE rfc
  PUBLIC "" "rfc2629.dtd">
<rfc ipr="trust200902" docName="draft-ietf-httpbis-client-hints-04" category="exp" obsoletes="" updates="" submissionType="IETF"><front><title>HTTP Client Hints</title><author initials="I." surname="Grigorik" fullname="Ilya Grigorik"><organization>Google</organization><address><email>ilya@igvita.com</email><uri>https://www.igvita.com/</uri></address></author><date year="2017"/><area>Applications and Real-Time</area><workgroup>HTTP Working Group</workgroup><keyword>Content Negotiation</keyword><abstract><t>An increasing diversity of Web-connected devices and software capabilities has created a need to deliver optimized content for each device.</t><t>This specification defines a set of HTTP request header fields, colloquially known as Client Hints, to address this. They are intended to be used as input to proactive content negotiation; just as the Accept header field allows user agents to indicate what formats they prefer, Client Hints allow user agents to indicate device and agent specific preferences.</t></abstract><note title="Note to Readers"><t>Discussion of this draft takes place on the HTTP working group mailing list
(ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t><t>Working Group information can be found at <eref target="http://httpwg.github.io/">http://httpwg.github.io/</eref>; source
code and issues list for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/client-hints">https://github.com/httpwg/http-extensions/labels/client-hints</eref>.</t></note></front><middle><section anchor="introduction" toc="default" title="Introduction"><t>There are thousands of different devices accessing the web, each with different device capabilities and preference information. These device capabilities include hardware and software characteristics, as well as dynamic user and client preferences.</t><t>One way to infer some of these capabilities is through User-Agent (Section 5.5.3 of <xref target="RFC7231" format="default"/>) header field detection against an established database of client signatures. However, this technique requires acquiring such a database, integrating it into the serving path, and keeping it up to date. However, even once this infrastructure is deployed, user agent sniffing has numerous limitations:</t><t><list style="symbols"><t>User agent detection cannot reliably identify all static variables</t><t>User agent detection cannot infer any dynamic client preferences</t><t>User agent detection requires an external device database</t><t>User agent detection is not cache friendly</t></list></t><t>A popular alternative strategy is to use HTTP cookies (<xref target="RFC6265" format="default"/>) to communicate some information about the user agent. However, this approach is also not cache friendly, bound by same origin policy, and imposes additional client-side latency by requiring JavaScript execution to create and manage HTTP cookies.</t><t>This document defines a set of new request header fields that allow user agent to perform proactive content negotiation (Section 3.4.1 of <xref target="RFC7231" format="default"/>) by indicating device and agent specific preferences, through a mechanism similar to the Accept header field which is used to indicate preferred response formats.</t><t>Client Hints does not supersede or replace the User-Agent header field. Existing device detection mechanisms can continue to use both mechanisms if necessary. By advertising its capabilities within a request header field, Client Hints allows for cache friendly and proactive content negotiation.</t><section anchor="notational-conventions" toc="default" title="Notational Conventions"><t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in <xref target="RFC2119" format="default"/>.</t><t>This document uses the Augmented Backus-Naur Form (ABNF) notation of <xref target="RFC5234" format="default"/> with the list rule extension defined in <xref target="RFC7230" format="default"/>, Appendix B. It includes by reference the DIGIT rule from <xref target="RFC5234" format="default"/> and the OWS and field-name rules from <xref target="RFC7230" format="default"/>.</t></section></section><section anchor="client-hint-request-header-fields" toc="default" title="Client Hint Request Header Fields"><t>A Client Hint request header field is a HTTP header field that is used by HTTP clients to indicate configuration data that can be used by the server to select an appropriate response. Each one conveys client preferences that the server can use to adapt and optimize the response.</t><section anchor="sending-client-hints" toc="default" title="Sending Client Hints"><t>Clients control which Client Hints are sent in requests, based on their default settings, user configuration and/or preferences. Implementers might provide user choice mechanisms so that users may balance privacy concerns with bandwidth limitations. Implementations specific to certain use cases or threat models might avoid transmitting these headers altogether, or limit them to secure contexts or authenticated sessions. Implementers should be aware that explaining the privacy implications of passive fingerprinting or network information disclosure may be challenging.</t><t>The client and server, or an intermediate proxy, can use an opt-in mechanism to negotiate which fields should be reported to allow for efficient content adaption.</t></section><section anchor="server-processing-of-client-hints" toc="default" title="Server Processing of Client Hints"><t>When presented with a request that contains one or more client hint headers, servers can optimize the response based upon the information in them. When doing so, and if the resource is cacheable, the server MUST also generate a Vary response header field (Section 7.1.4 of <xref target="RFC7231" format="default"/>), and optionally Key (<xref target="I-D.ietf-httpbis-key" format="default"/>), to indicate which hints can affect the selected response and whether the selected response is appropriate for a later request.</t><t>Further, depending on the hint used, the server can generate additional response header fields to convey related values to aid client processing. For example, this specification defines “Content-DPR” response header field that needs to be returned by the server when the “DPR” hint is used to select the response.</t><section anchor="accept-ch" toc="default" title="Advertising Support via Accept-CH header field"><t>Servers can advertise support for Client Hints using the Accept-CH header field or an equivalent HTML meta element with http-equiv attribute (<xref target="W3C.REC-html5-20141028" format="default"/>).</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="abnf7230" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Accept-CH = #field-name
]]></artwork></figure><t>For example:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Accept-CH: DPR, Width, Viewport-Width
]]></artwork></figure><t>When a client receives Accept-CH, or if it is capable of processing the HTML response and finds an equivalent HTML meta element, it can treat it as a signal that the application is interested in receiving specified request header fields that match the advertised field-values; subresource requests initiated as a result of processing the response from the server that includes the Accept-CH opt-in can include the request header fields that match the advertised field-values.</t><t>For example, based on Accept-CH example above, a user agent could append DPR, Width, and Viewport-Width header fields to all subresource requests initiated by the page constructed from the response.</t></section><section anchor="accept-ch-lifetime" toc="default" title="The Accept-CH-Lifetime header field"><t>Servers can ask the client to remember an origin-wide Accept-CH preference for a specified period of time to enable delivery of Client Hints on all subsequent requests to the origin, and on subresource requests initiated as a result of processing a response from the origin.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="abnf7230" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Accept-CH-Lifetime = #delta-seconds
]]></artwork></figure><t>The field-value indicates that the Accept-CH preference should be considered stale after its age is greater than the specified number of seconds.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Accept-CH: DPR, Viewport-Width
  Accept-CH-Lifetime: 86400
]]></artwork></figure><t>For example, based on the Accept-CH and Accept-CH-Lifetime example above, a user agent could persist an origin-wide Accept-CH preference for up to 86400 seconds (1 day). Then, if a request is initiated to the same origin before the preference is stale (e.g. as a result of a navigation to the origin, or fetching a subresource from the origin) the client could append the requested header fields (DPR and Viewport-Width in this example) to the request and any subresource requests initiated as a result of processing a response from same origin.</t></section><section anchor="interaction-with-caches" toc="default" title="Interaction with Caches"><t>When selecting an optimized response based on one or more Client Hints, and if the resource is cacheable, the server needs to generate a Vary response header field (<xref target="RFC7234" format="default"/>) to indicate which hints can affect the selected response and whether the selected response is appropriate for a later request.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Vary: DPR
]]></artwork></figure><t>Above example indicates that the cache key needs to include the DPR header field.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Vary: DPR, Width, Downlink
]]></artwork></figure><t>Above example indicates that the cache key needs to include the DPR, Width, and Downlink header fields.</t><t>Client Hints MAY be combined with Key (<xref target="I-D.ietf-httpbis-key" format="default"/>) to enable fine-grained control of the cache key for improved cache efficiency. For example, the server can return the following set of instructions:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Key: DPR;partition=1.5:2.5:4.0
]]></artwork></figure><t>Above example indicates that the cache key needs to include the value of the DPR header field with three segments: less than 1.5, 1.5 to less than 2.5, and 4.0 or greater.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Key: Width;div=320
]]></artwork></figure><t>Above example indicates that the cache key needs to include the value of the Width header field and be partitioned into groups of 320: 0-320, 320-640, and so on.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Key: Downlink;partition=0.5:1.0:3.0:5.0:10
]]></artwork></figure><t>Above example indicates that the cache key needs to include the (Mbps) value of the Downlink header field with six segments: less than 0.5, 0.5 to less than 1.0, 1.0 to less than 3.0, 3.0 to less than 5.0, 5.0 to less than 10; 10 or higher.</t></section></section></section><section anchor="client-hints" toc="default" title="Client Hints"><section anchor="dpr" toc="default" title="The DPR header field"><t>The “DPR” request header field is a number that indicates the client’s current Device Pixel Ratio (DPR), which is the ratio of physical pixels over CSS px (Section 5.2 of <xref target="W3C.CR-css-values-3-20160929" format="default"/>) of the layout viewport (Section 9.1.1 of <xref target="CSS2" format="default"/>) on the device.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="abnf7230" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  DPR = 1*DIGIT [ "." 1*DIGIT ]
]]></artwork></figure><t>If DPR occurs in a message more than once, the last value overrides all previous occurrences.</t><section anchor="content-dpr" toc="default" title="Confirming Selected DPR"><t>The “Content-DPR” response header field is a number that indicates the ratio between physical pixels over CSS px of the selected image response.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="abnf7230" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Content-DPR = 1*DIGIT [ "." 1*DIGIT ]
]]></artwork></figure><t>DPR ratio affects the calculation of intrinsic size of image resources on the client - i.e. typically, the client automatically scales the natural size of the image by the DPR ratio to derive its display dimensions. As a result, the server MUST explicitly indicate the DPR of the selected image response whenever the DPR hint is used, and the client MUST use the DPR value returned by the server to perform its calculations. In case the server returned Content-DPR value contradicts previous client-side DPR indication, the server returned value MUST take precedence.</t><t>Note that DPR confirmation is only required for image responses, and the server does not need to confirm the resource width as this value can be derived from the resource itself once it is decoded by the client.</t><t>If Content-DPR occurs in a message more than once, the last value overrides all previous occurrences.</t></section></section><section anchor="width" toc="default" title="The Width header field"><t>The “Width” request header field is a number that indicates the desired resource width in physical px (i.e. intrinsic size of an image). The provided physical px value is a number rounded to the smallest following integer (i.e. ceiling value).</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="abnf7230" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Width = 1*DIGIT
]]></artwork></figure><t>If the desired resource width is not known at the time of the request or the resource does not have a display width, the Width header field can be omitted. If Width occurs in a message more than once, the last value overrides all previous occurrences.</t></section><section anchor="viewport-width" toc="default" title="The Viewport-Width header field"><t>The “Viewport-Width” request header field is a number that indicates the layout viewport width in CSS px. The provided CSS px value is a number rounded to the smallest following integer (i.e. ceiling value).</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="abnf7230" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Viewport-Width = 1*DIGIT
]]></artwork></figure><t>If Viewport-Width occurs in a message more than once, the last value overrides all previous occurrences.</t></section><section anchor="downlink" toc="default" title="The Downlink header field"><t>The “Downlink” request header field is a number that indicates the client’s maximum downlink speed in megabits per second (Mbps).</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="abnf7230" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Downlink = 1*DIGIT [ "." 1*DIGIT ]
]]></artwork></figure><t>If Downlink occurs in a message more than once, the minimum value should be used to override other occurrences.</t></section><section anchor="save-data" toc="default" title="The Save-Data header field"><t>The “Save-Data” request header field consists of one or more tokens that indicate client’s preference for reduced data usage, due to high transfer costs, slow connection speeds, or other reasons.</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="abnf7230" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Save-Data = sd-token *( OWS ";" OWS [sd-token] )
  sd-token = token
]]></artwork></figure><t>This document defines the “on” sd-token value, which is used as a signal indicating explicit user opt-in into a reduced data usage mode on the client, and when communicated to origins allows them to deliver alternate content honoring such preference - e.g. smaller image and video resources, alternate markup, and so on. New token and extension token values can be defined by updates to this specification.</t></section></section><section anchor="examples" toc="default" title="Examples"><t>For example, given the following request header fields:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  DPR: 2.0
  Width: 320
  Viewport-Width: 320
]]></artwork></figure><t>The server knows that the device pixel ratio is 2.0, that the intended display width of the requested resource is 160 CSS px (320 physical pixels at 2x resolution), and that the viewport width is 320 CSS px.</t><t>If the server uses above hints to perform resource selection for an image asset, it must confirm its selection via the Content-DPR response header to allow the client to calculate the appropriate intrinsic size of the image response. The server does not need to confirm resource width, only the ratio between physical pixels and CSS px of the selected image resource:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Content-DPR: 1.0
]]></artwork></figure><t>The Content-DPR response header field indicates to the client that the server has selected resource with DPR ratio of 1.0. The client can use this information to perform additional processing on the resource - for example, calculate the appropriate intrinsic size of the image resource such that it is displayed at the correct resolution.</t><t>Alternatively, the server could select an alternate resource based on the maximum downlink speed advertised in the request header fields:</t><figure suppress-title="false" align="left" alt="" width="" height=""><artwork type="example" xml:space="preserve" name="" align="left" alt="" width="" height=""><![CDATA[
  Downlink: 0.384
]]></artwork></figure><t>The server knows that the client’s maximum downlink speed is 0.384Mbps (GPRS EDGE), and it can use this information to select an optimized resource - for example, an alternate image asset, stylesheet, HTML document, media stream, and so on.</t></section><section anchor="security-considerations" toc="default" title="Security Considerations"><t>The request header fields defined in this specification expose information that is already available to Web applications in the browser runtime itself (e.g., using JavaScript and CSS). For example, the application can obtain viewport width, image display width, and device pixel ratio via JavaScript, or through the use of CSS media queries and unique resource URLs even if JavaScript is disabled. However, servers that gather this information through such mechanisms are typically observable (e.g., you can see that they’re using JavaScript to gather it), whereas servers’ use of the header fields introduced by this specification is not observable. Section 2.1 discusses potential mitigations.</t><t>For example, sending Client Hints on all requests can make information about the user’s environment available to origins that otherwise did not have access to this data, which may or may not be the desired outcome - e.g. this may enable an image optimization service to deliver a tailored asset, and it may reveal same information about the user to other origins that may not have had access to it before. Similarly, sending highly granular data, such as image and viewport width may help identify users across multiple requests. Restricting such field values to an enumerated range, where the user agent advertises a threshold value that is close but is not an exact representation of the current value, can help mitigate the risk of such fingerprinting.</t><t>Implementers ought to provide mechanisms and policies to control how and when such hints are advertised. For example, they could require origin opt-in via Accept-CH; clear remembered opt-in, as set by Accept-CH-Lifetime, when site data, browsing history, browsing cache, or similar, are cleared; restrict delivery to same origin subrequests; limit delivery to requests that already carry identifying information (e.g. cookies); modify delivery policy when in an “incognito” or a similar privacy mode; enable user configuration and opt in, and so on.</t></section><section anchor="iana-considerations" toc="default" title="IANA Considerations"><t>This document defines the “Accept-CH”, “DPR”, “Width”, and “Downlink” HTTP request fields, “Content-DPR” HTTP response field, and registers them in the Permanent Message Header Fields registry.</t><section anchor="iana-accept-ch" toc="default" title="Accept-CH"><t><list style="symbols"><t>Header field name: Accept-CH</t><t>Applicable protocol: HTTP</t><t>Status: standard</t><t>Author/Change controller: IETF</t><t>Specification document(s): <xref target="accept-ch" format="default"/> of this document</t><t>Related information: for Client Hints</t></list></t></section><section anchor="iana-accept-ch-lifetime" toc="default" title="Accept-CH-Lifetime"><t><list style="symbols"><t>Header field name: Accept-CH-Lifetime</t><t>Applicable protocol: HTTP</t><t>Status: standard</t><t>Author/Change controller: IETF</t><t>Specification document(s): <xref target="accept-ch-lifetime" format="default"/> of this document</t><t>Related information: for Client Hints</t></list></t></section><section anchor="iana-content-dpr" toc="default" title="Content-DPR"><t><list style="symbols"><t>Header field name: Content-DPR</t><t>Applicable protocol: HTTP</t><t>Status: standard</t><t>Author/Change controller: IETF</t><t>Specification document(s): <xref target="content-dpr" format="default"/> of this document</t><t>Related information: for Client Hints</t></list></t></section><section anchor="iana-downlink" toc="default" title="Downlink"><t><list style="symbols"><t>Header field name: Downlink</t><t>Applicable protocol: HTTP</t><t>Status: standard</t><t>Author/Change controller: IETF</t><t>Specification document(s): <xref target="downlink" format="default"/> of this document</t><t>Related information: for Client Hints</t></list></t></section><section anchor="iana-dpr" toc="default" title="DPR"><t><list style="symbols"><t>Header field name: DPR</t><t>Applicable protocol: HTTP</t><t>Status: standard</t><t>Author/Change controller: IETF</t><t>Specification document(s): <xref target="dpr" format="default"/> of this document</t><t>Related information: for Client Hints</t></list></t></section><section anchor="iana-save-data" toc="default" title="Save-Data"><t><list style="symbols"><t>Header field name: Save-Data</t><t>Applicable protocol: HTTP</t><t>Status: standard</t><t>Author/Change controller: IETF</t><t>Specification document(s): <xref target="save-data" format="default"/> of this document</t><t>Related information: for Client Hints</t></list></t></section><section anchor="iana-viewport-width" toc="default" title="Viewport-Width"><t><list style="symbols"><t>Header field name: Viewport-Width</t><t>Applicable protocol: HTTP</t><t>Status: standard</t><t>Author/Change controller: IETF</t><t>Specification document(s): <xref target="viewport-width" format="default"/> of this document</t><t>Related information: for Client Hints</t></list></t></section><section anchor="iana-width" toc="default" title="Width"><t><list style="symbols"><t>Header field name: Width</t><t>Applicable protocol: HTTP</t><t>Status: standard</t><t>Author/Change controller: IETF</t><t>Specification document(s): <xref target="width" format="default"/> of this document</t><t>Related information: for Client Hints</t></list></t></section></section></middle><back><references title="Normative References"><reference anchor="RFC2119" target="http://www.rfc-editor.org/info/rfc2119"><front><title>Key words for use in RFCs to Indicate Requirement Levels</title><author initials="S." surname="Bradner" fullname="S. Bradner"><organization/></author><date year="1997" month="March"/><abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract></front><seriesInfo name="BCP" value="14"/><seriesInfo name="RFC" value="2119"/><seriesInfo name="DOI" value="10.17487/RFC2119"/></reference><reference anchor="RFC5234" target="http://www.rfc-editor.org/info/rfc5234"><front><title>Augmented BNF for Syntax Specifications: ABNF</title><author initials="D." surname="Crocker" fullname="D. Crocker" role="editor"><organization/></author><author initials="P." surname="Overell" fullname="P. Overell"><organization/></author><date year="2008" month="January"/><abstract><t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t></abstract></front><seriesInfo name="STD" value="68"/><seriesInfo name="RFC" value="5234"/><seriesInfo name="DOI" value="10.17487/RFC5234"/></reference><reference anchor="RFC7230" target="http://www.rfc-editor.org/info/rfc7230"><front><title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title><author initials="R." surname="Fielding" fullname="R. Fielding" role="editor"><organization/></author><author initials="J." surname="Reschke" fullname="J. Reschke" role="editor"><organization/></author><date year="2014" month="June"/><abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract></front><seriesInfo name="RFC" value="7230"/><seriesInfo name="DOI" value="10.17487/RFC7230"/></reference><reference anchor="RFC7231" target="http://www.rfc-editor.org/info/rfc7231"><front><title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title><author initials="R." surname="Fielding" fullname="R. Fielding" role="editor"><organization/></author><author initials="J." surname="Reschke" fullname="J. Reschke" role="editor"><organization/></author><date year="2014" month="June"/><abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t></abstract></front><seriesInfo name="RFC" value="7231"/><seriesInfo name="DOI" value="10.17487/RFC7231"/></reference><reference anchor="RFC7234" target="http://www.rfc-editor.org/info/rfc7234"><front><title>Hypertext Transfer Protocol (HTTP/1.1): Caching</title><author initials="R." surname="Fielding" fullname="R. Fielding" role="editor"><organization/></author><author initials="M." surname="Nottingham" fullname="M. Nottingham" role="editor"><organization/></author><author initials="J." surname="Reschke" fullname="J. Reschke" role="editor"><organization/></author><date year="2014" month="June"/><abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t></abstract></front><seriesInfo name="RFC" value="7234"/><seriesInfo name="DOI" value="10.17487/RFC7234"/></reference><reference anchor="W3C.REC-html5-20141028" target="http://www.w3.org/TR/2014/REC-html5-20141028"><front><title>HTML5</title><author initials="I." surname="Hickson" fullname="Ian Hickson"><organization/></author><author initials="R." surname="Berjon" fullname="Robin Berjon"><organization/></author><author initials="S." surname="Faulkner" fullname="Steve Faulkner"><organization/></author><author initials="T." surname="Leithead" fullname="Travis Leithead"><organization/></author><author initials="E." surname="Navara" fullname="Erika Doyle Navara"><organization/></author><author initials="T." surname="O&amp;#039;Connor" fullname="Theresa O&amp;#039;Connor"><organization/></author><author initials="S." surname="Pfeiffer" fullname="Silvia Pfeiffer"><organization/></author><date month="October" day="28" year="2014"/></front><seriesInfo name="World Wide Web Consortium Recommendation" value="REC-html5-20141028"/><format type="HTML" target="http://www.w3.org/TR/2014/REC-html5-20141028"/></reference><reference anchor="W3C.CR-css-values-3-20160929" target="https://www.w3.org/TR/2016/CR-css-values-3-20160929"><front><title>CSS Values and Units Module Level 3</title><author initials="T." surname="Atkins" fullname="Tab Atkins"><organization/></author><author initials="E." surname="Etemad" fullname="Elika Etemad"><organization/></author><date month="September" day="29" year="2016"/></front><seriesInfo name="World Wide Web Consortium CR" value="CR-css-values-3-20160929"/><format type="HTML" target="https://www.w3.org/TR/2016/CR-css-values-3-20160929"/></reference><reference anchor="CSS2" target="http://www.w3.org/TR/2011/REC-CSS2-20110607"><front><title>Cascading Style Sheets Level 2 Revision 1 (CSS 2.1) Specification</title><author initials="B." surname="Bos"><organization/></author><author initials="T." surname="Celic"><organization/></author><author initials="I." surname="Hickson"><organization/></author><author initials="H.W." surname="Lie"><organization/></author><date year="2011" month="June"/></front><seriesInfo name="W3C Recommendation" value="REC-CSS2-20110607"/></reference></references><references title="Informative References"><reference anchor="RFC6265" target="http://www.rfc-editor.org/info/rfc6265"><front><title>HTTP State Management Mechanism</title><author initials="A." surname="Barth" fullname="A. Barth"><organization/></author><date year="2011" month="April"/><abstract><t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol.  Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet.  This document obsoletes RFC 2965.  [STANDARDS-TRACK]</t></abstract></front><seriesInfo name="RFC" value="6265"/><seriesInfo name="DOI" value="10.17487/RFC6265"/></reference><reference anchor="I-D.ietf-httpbis-key"><front><title>The Key HTTP Response Header Field</title><author initials="R" surname="Fielding" fullname="Roy T. Fielding"><organization/></author><author initials="M" surname="Nottingham" fullname="Mark Nottingham"><organization/></author><date month="March" day="1" year="2016"/><abstract><t>The 'Key' header field for HTTP responses allows an origin server to describe the secondary cache key (RFC 7234, Section 4.1) for a resource, by conveying what is effectively a short algorithm that can be used upon later requests to determine if a stored response is reusable for a given request.  Key has the advantage of avoiding an additional round trip for validation whenever a new request differs slightly, but not significantly, from prior requests.  Key also informs user agents of the request characteristics that might result in different content, which can be useful if the user agent is not sending request header fields in order to reduce the risk of fingerprinting.</t></abstract></front><seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-key-01"/><format type="TXT" target="http://www.ietf.org/internet-drafts/draft-ietf-httpbis-key-01.txt"/></reference></references><section anchor="changes" toc="default" title="Changes"><section anchor="since-00" toc="default" title="Since -00"><t><list style="symbols"><t>Issue 168 (make Save-Data extensible) updated ABNF.</t><t>Issue 163 (CH review feedback) editorial feedback from httpwg list.</t><t>Issue 153 (NetInfo API citation) added normative reference.</t></list></t></section><section anchor="since-01" toc="default" title="Since -01"><t><list style="symbols"><t>Issue 200: Moved Key reference to informative.</t><t>Issue 215: Extended passive fingerprinting and mitigation considerations.</t><t>Changed document status to experimental.</t></list></t></section><section anchor="since-02" toc="default" title="Since -02"><t><list style="symbols"><t>Issue 239: Updated reference to CR-css-values-3</t><t>Issue 240: Updated reference for Network Information API</t><t>Issue 241: Consistency in IANA considerations</t><t>Issue 250: Clarified Accept-CH</t></list></t></section><section anchor="since-03" toc="default" title="Since -03"><t><list style="symbols"><t>Issue 284: Extended guidance for Accept-CH</t><t>Issue 308: Editorial cleanup</t><t>Issue 306: Define Accept-CH-Lifetime</t></list></t></section><section anchor="since-04" toc="default" title="Since -04"><t><list style="symbols"><t>None</t></list></t></section></section></back><!-- ##markdown-source:
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

--></rfc>
