- From: Matt Falkenhagen <notifications@github.com>
- Date: Thu, 06 Oct 2016 21:38:42 -0700
- To: w3c/ServiceWorker <ServiceWorker@noreply.github.com>
Received on Friday, 7 October 2016 04:39:13 UTC
mattto commented on this pull request. > + <section dfn-for="NavigationPreloadManager"> + <h3 id="navigation-preload-manager">{{NavigationPreloadManager}}</h3> + + <pre class="idl"> + [SecureContext, Exposed=(Window,Worker)] + interface NavigationPreloadManager { + Promise<void> enable(); + Promise<void> disable(); + Promise<void> setHeaderValue(DOMString value); + Promise<NavigationPreloadState> getState(); + }; + </pre> + <pre class="idl" id="navigation-preload-state"> + dictionary NavigationPreloadState { + boolean enabled = false; + DOMString headerValue; Should this be ByteString? The Fetch and XHR specs are using ByteString for HTTP header values. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/w3c/ServiceWorker/pull/983#pullrequestreview-3243891
Received on Friday, 7 October 2016 04:39:13 UTC