From 2af43f65055de2817eb7907d3a3d3b3a3de127f5 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Thu, 7 Jan 2021 06:54:28 -0800 Subject: [PATCH] doc: clarify event.isTrusted text PR-URL: https://github.com/nodejs/node/pull/36827 Reviewed-By: Antoine du Hamel Reviewed-By: James M Snell --- 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..7917675bf872cf 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()`