- From: Anne van Kesteren <notifications@github.com>
- Date: Tue, 11 Apr 2017 02:05:05 -0700
- To: whatwg/fetch <fetch@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Tuesday, 11 April 2017 09:05:37 UTC
annevk commented on this pull request. > +<pre class=idl> +[Exposed=(Window,Worker)] +interface FetchSignal : CancelationSignal { + // Nothing additional exposed here yet +}; +</pre> + +<h3 id=fetch-controller>Fetch controller</h3> + +<pre class=idl> +[Constructor(), Exposed=(Window,Worker)] +interface FetchController : CancelationController { + [SameObject] readonly attribute FetchSignal signal; + // Nothing additional exposed here yet +}; +</pre> Well, if you pass in the superclass or a differently subclass, presumably we'd reflect that instance directly on the constructed `Request` object and not some copy. And therefore that would have to specify the superclass. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/whatwg/fetch/pull/523#discussion_r110849454
Received on Tuesday, 11 April 2017 09:05:37 UTC