From e85ae950b852190d87a69c61961bb071801208fa Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 7 Jan 2021 06:54:28 -0800 Subject: [PATCH 1/2] doc: clarify event.isTrusted text --- doc/api/events.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/events.md b/doc/api/events.md index b66199e99647de..5c518c499c9303 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -1344,10 +1344,10 @@ This is not used in Node.js and is provided purely for completeness. added: v14.5.0 --> -* Type: {boolean} True for Node.js internal events, false otherwise. +* Type: {boolean} -Currently only `AbortSignal`s' `"abort"` event is fired with `isTrusted` -set to `true`. +The `AbortSignal` `"abort"` event is emitted with `isTrusted` set to `true`. The +value is `false` in all other cases. #### `event.preventDefault()`