<?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.36 -->
<?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
  SYSTEM "rfc2629.dtd">
<rfc ipr="trust200902" docName="draft-ietf-httpbis-client-hints-02" 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="2016"/><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 clients to indicate what formats they prefer, Client Hints allow clients to indicate a list of 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 (UA; Section 5.5.3 of <xref target="RFC7231" format="default"/>) 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, UA sniffing has numerous limitations:</t><t><list style="symbols"><t>UA detection cannot reliably identify all static variables</t><t>UA detection cannot infer any dynamic client preferences</t><t>UA detection requires an external device database</t><t>UA 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 client. 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 the client to perform proactive content negotiation (Section 3.4.1 of <xref target="RFC7231" format="default"/>) by indicating a list of 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 a list of 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 Hint headers and their respective header fields are communicated, based on their default settings, user configuration and/or preferences. The user can be given the choice to enable, disable, or override specific hints.</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>Servers respond with an optimized response based on one or more received hints from the client. When doing so, and if the resource is cacheable, the server MUST also emit 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 used hint, the server can emit additional response header fields to confirm the property of the response, such that the client can adjust its 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 for Client Hints"><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, Downlink
]]></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 SHOULD append the Client-Hint header fields that match the advertised field-values to the header list of all subsequent requests. For example, based on Accept-CH example above, a user agent could append DPR, Width, Viewport-Width, and Downlink header fields to all subresource requests initiated by the page constructed from the response. Alternatively, a client can treat advertised support as a persistent origin preference and append same header fields on all future requests initiated to and by the resources associated with that 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 emit 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="dpr" toc="default" title="The DPR Client Hint"><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-20150611" 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 Client Hint"><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 Client Hint"><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 Client Hint"><t>The “Downlink” request header field is a number that indicates the client’s maximum downlink speed in megabits per second (Mbps), as defined by the “downlinkMax” attribute in the W3C Network Information API (<xref target="NETINFO" 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[

  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 Client Hint"><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 only be defined by revisions of this specification.</t></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>Client Hints defined in this specification do not expose new information about the user’s environment beyond what is already available to, and can be communicated by, the application at runtime via 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, implementors should consider the privacy implications of various methods to enable delivery of Client Hints - see “Sending Client Hints” section.</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, might reduce such fingerprinting risks.</t><t>The implementers can provide mechanisms and policies to control how and when such hints are advertised: require origin opt-in and restrict delivery to same origin subrequests; limit delivery to requests that already carry indentifying 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"/></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="NETINFO" target="https://w3c.github.io/netinfo/"><front><title>Network Information API</title><author initials="M." surname="Cáceres" fullname="Marcos Cáceres"><organization>Mozilla Corporation</organization></author><author initials="F.J." surname="Moreno" fullname="Fernando Jiménez Moreno"><organization>Telefonica</organization></author><author initials="I." surname="Grigorik" fullname="Ilya Grigorik"><organization>Google</organization></author><date year="2015" month="December"/></front></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-20150611" target="http://www.w3.org/TR/2015/CR-css-values-3-20150611"><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="June" day="11" year="2015"/></front><seriesInfo name="World Wide Web Consortium CR" value="CR-css-values-3-20150611"/><format type="HTML" target="http://www.w3.org/TR/2015/CR-css-values-3-20150611"/></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>None yet.</t></section></section></back></rfc>
