Re: [whatwg/dom] Robust events (#1016)

@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