From 9d73e61a1379557749a00ce9926b7908e43dffa7 Mon Sep 17 00:00:00 2001 From: wbamberg Date: Fri, 9 Feb 2024 17:24:46 -0800 Subject: [PATCH] Remove outdated note --- files/en-us/web/api/extendableevent/index.md | 2 -- files/en-us/web/api/extendableevent/waituntil/index.md | 3 --- 2 files changed, 5 deletions(-) diff --git a/files/en-us/web/api/extendableevent/index.md b/files/en-us/web/api/extendableevent/index.md index 59220996f9b9dfb..47e816ec65f44af 100644 --- a/files/en-us/web/api/extendableevent/index.md +++ b/files/en-us/web/api/extendableevent/index.md @@ -11,8 +11,6 @@ The **`ExtendableEvent`** interface extends the lifetime of the [`install`](/en- If {{domxref("ExtendableEvent.waitUntil","waitUntil()")}} is called outside of the `ExtendableEvent` handler, the browser should throw an `InvalidStateError`; note also that multiple calls will stack up, and the resulting promises will be added to the list of [extend lifetime promises](https://w3c.github.io/ServiceWorker/#extendableevent-extend-lifetime-promises). -> **Note:** The behavior described in the above paragraph was fixed in Firefox 43 (see [Firefox bug 1180274](https://bugzil.la/1180274).) - This interface inherits from the {{domxref("Event")}} interface. {{InheritanceDiagram}} diff --git a/files/en-us/web/api/extendableevent/waituntil/index.md b/files/en-us/web/api/extendableevent/waituntil/index.md index aacf45c360af7a6..6746573b5d57ba8 100644 --- a/files/en-us/web/api/extendableevent/waituntil/index.md +++ b/files/en-us/web/api/extendableevent/waituntil/index.md @@ -32,9 +32,6 @@ The `waitUntil()` method must be initially called within the event callback, but after that it can be called multiple times, until all the promises passed to it settle. -> **Note:** The behavior described in the above paragraph was fixed in -> Firefox 43 (see [Firefox bug 1180274](https://bugzil.la/1180274)). - ## Syntax ```js-nolint