From f8e67019a9db75420a16c653cfad37646cbdfad9 Mon Sep 17 00:00:00 2001 From: gterzian <2792687+gterzian@users.noreply.github.com> Date: Thu, 5 Jun 2025 17:35:44 +0700 Subject: [PATCH] remove must_root from rejection handler Signed-off-by: gterzian <2792687+gterzian@users.noreply.github.com> --- components/script/dom/promise.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/components/script/dom/promise.rs b/components/script/dom/promise.rs index ac5615474aa..c104271f359 100644 --- a/components/script/dom/promise.rs +++ b/components/script/dom/promise.rs @@ -471,7 +471,6 @@ impl Callback for WaitForAllFulfillmentHandler { /// The rejection handler for the list of promises in /// . #[derive(Clone, JSTraceable, MallocSizeOf)] -#[cfg_attr(crown, crown::unrooted_must_root_lint::must_root)] struct WaitForAllRejectionHandler { /// The steps to call if any promise rejects. #[ignore_malloc_size_of = "Rc is hard"]