From 2907848fc9b1ad598efe2d12d22d8a4048a9f410 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 48df1eaa78fd3f..93f99e9c2814c1 100644 --- a/doc/api/events.md +++ b/doc/api/events.md @@ -1338,10 +1338,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()`