Re: HTTP/3 ready for testing

2020-12-03 Thread RyanVM
On Friday, November 20, 2020 at 2:35:21 PM UTC-5, Dragana Damjanovic wrote: > On Fri, Nov 20, 2020 at 6:06 PM James Graham wrote: > > > On 20/11/2020 16:09, Dragana Damjanovic wrote: > > > > > Our implementation is ready for testing. > > > > What's the interop testing story for HTTP/3? How c

Intent to prototype and ship: signal property on AddEventListenerOptions

2020-12-03 Thread smaug
Summary: https://github.com/whatwg/dom/issues/911 proposes to add signal property to AddEventListenerOptions const ac = new AbortController(); target.addEventListener('fooEvent', (e) => { ... }, { signal: ac.signal } ); so that one can easily remove the event listener when AbortController is abo