<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.0.30 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?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"?>

<rfc ipr="trust200902" docName="draft-ietf-httpbis-client-hints-01" category="std">

  <feedback xmlns='http://purl.org/net/xml2rfc/ext' template="mailto:ietf-http-wg@w3.org?subject={docname},%20%22{section}%22&amp;body=%3c{ref}%3e:"/><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" month="May" day="31"/>

    <area>Applications and Real-Time</area>
    <workgroup>HTTP</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" 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"/>) 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"/>) 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"/>) 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" 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"/>.</t>

<t>This document uses the Augmented Backus-Naur Form (ABNF) notation of <xref target="RFC5234"/> with the list rule extension defined in <xref target="RFC7230"/>, Appendix B. It includes by reference the DIGIT rule from <xref target="RFC5234"/>; the OWS, field-name and quoted-string rules from <xref target="RFC7230"/>; and the parameter rule from <xref target="RFC7231"/>.</t>

</section>
</section>
<section anchor="client-hint-request-header-fields" 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" 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" 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"/>), and optionally Key (<xref target="I-D.ietf-httpbis-key"/>), to indicate which hints were used 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" 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"/>).</t>

<figure><artwork type="abnf7230"><![CDATA[
  Accept-CH = #token
]]></artwork></figure>

<t>For example:</t>

<figure><artwork type="example"><![CDATA[
  Accept-CH: DPR, Width, Viewport-Width, Downlink
]]></artwork></figure>

<t>When a client receives Accept-CH, it SHOULD append the Client Hint header fields that match the advertised field-values. For example, based on Accept-CH example above, the client would append DPR, Width, Viewport-Width, and Downlink header fields to all subsequent requests.</t>

</section>
<section anchor="interaction-with-caches" 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"/>) to indicate which hints were used and whether the selected response is appropriate for a later request.</t>

<figure><artwork type="example"><![CDATA[
  Vary: DPR
]]></artwork></figure>

<t>Above example indicates that the cache key needs to include the DPR header field.</t>

<figure><artwork type="example"><![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"/>) 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><artwork type="example"><![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><artwork type="example"><![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><artwork type="example"><![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" 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"/>) of the layout viewport (Section 9.1.1 of <xref target="CSS2"></xref>) on the device.</t>

<figure><artwork type="abnf7230"><![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" 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><artwork type="abnf7230"><![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" 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 largest smallest following integer (i.e. ceiling value).</t>

<figure><artwork type="abnf7230"><![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" 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 largest smallest following integer (i.e. ceiling value).</t>

<figure><artwork type="abnf7230"><![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" 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"/>).</t>

<figure><artwork type="abnf7230"><![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" title="The Save-Data Client Hint">

<t>The “Save-Data” request header field is a token that indicates client’s preference for reduced data usage, due to high transfer costs, slow connection speeds, or other reasons.</t>

<figure><artwork type="abnf7230"><![CDATA[
  Save-Data : sd-token *( ";" [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" title="Examples">

<t>For example, given the following request header fields:</t>

<figure><artwork type="example"><![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><artwork type="example"><![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><artwork type="example"><![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" title="Security Considerations">

<t>Client Hints defined in this specification do not expose any new information about the user’s environment beyond what is already available to, and can be communicated by, the application at runtime via JavaScript - e.g. viewport and image display width, device pixel ratio, and so on.</t>

<t>However, implementors should consider the privacy implications of various methods to enable delivery of Client Hints - see “Sending Client Hints” section. 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 (e.g. origins hosting non-script resources), which might or not be the desired outcome. The implementors can provide mechanisms to control such behavior via explicit opt-in, or other mechanisms. Similarly, the implementors should consider how and whether delivery of Client Hints is affected when the user is in “incognito” or similar privacy mode.</t>

</section>
<section anchor="iana-considerations" 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" 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"/></t>
  <t>Related information: for Client Hints</t>
</list></t>

</section>
<section anchor="iana-content-dpr" 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"/> of this document</t>
  <t>Related information: for Client Hints</t>
</list></t>

</section>
<section anchor="iana-downlink" 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"/> of this document</t>
  <t>Related information: for Client Hints</t>
</list></t>

</section>
<section anchor="iana-dpr" 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"/> of this document</t>
  <t>Related information: for Client Hints</t>
</list></t>

</section>
<section anchor="iana-save-data" 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"/> of this document</t>
  <t>Related information: for Client Hints</t>
</list></t>

</section>
<section anchor="iana-viewport-width" 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"/> of this document</t>
  <t>Related information: for Client Hints</t>
</list></t>

</section>
<section anchor="iana-width" 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"/> 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 &quot;http&quot; and &quot;https&quot; 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='I-D.ietf-httpbis-key'>
<front>
<title>The Key HTTP Response Header Field</title>

<author initials='R' surname='Fielding' fullname='Roy 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>


<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='E.' surname='O&amp;#039;Connor' fullname='Edward 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></organization>
    </author>
    <author initials="T." surname="Celic">
      <organization></organization>
    </author>
    <author initials="I." surname="Hickson">
      <organization></organization>
    </author>
    <author initials="H.W." surname="Lie">
      <organization></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>




    </references>


<section anchor="changes" title="Changes">

<section anchor="since-00" 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" title="Since -01">

<t>None yet.</t>

</section>
</section>


  </back>
</rfc>

