- From: Anne van Kesteren <notifications@github.com>
- Date: Fri, 05 May 2023 00:43:10 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 5 May 2023 07:43:16 UTC
@smaug---- the idea is that you can hand out a signal to someone safely without them being able to stop the signal from doing something. However, if you can prevent further listeners from running you have a problem in this scenario: ```js giveSignalToSomeone(mysignal); userlandFetch(..., { signal: mysignal }); ``` `giveSignalToSomeone()` could prevent `userlandFetch()` from seeing the signal was aborted by using `stopImmediatePropagation()`. -- Reply to this email directly or view it on GitHub: https://github.com/whatwg/dom/issues/1016#issuecomment-1535855126 You are receiving this because you are subscribed to this thread. Message ID: <whatwg/dom/issues/1016/1535855126@github.com>
Received on Friday, 5 May 2023 07:43:16 UTC