From 3d1dd482df244281813f9c8a4ccaea8738c6ade0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20W=C3=BClker?= Date: Wed, 30 Apr 2025 17:39:47 +0200 Subject: [PATCH] Include `ChildrenList::last_visited` in memory reports (#36772) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit `MutNullableDom` is not in fact defined in `mozjs`. Testing: This change compiles, so it works Signed-off-by: Simon Wülker --- components/script/dom/nodelist.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/components/script/dom/nodelist.rs b/components/script/dom/nodelist.rs index b349f16a986..1ec2dc3f78b 100644 --- a/components/script/dom/nodelist.rs +++ b/components/script/dom/nodelist.rs @@ -175,7 +175,6 @@ impl NodeList { #[cfg_attr(crown, crown::unrooted_must_root_lint::must_root)] pub(crate) struct ChildrenList { node: Dom, - #[ignore_malloc_size_of = "Defined in rust-mozjs"] last_visited: MutNullableDom, last_index: Cell, }