From d3e0efbc21cc4480a4779be36c8a4268e3939cbc Mon Sep 17 00:00:00 2001 From: Wulan Seruniati Salim <103485830+wulanseruniati@users.noreply.github.com> Date: Tue, 29 Oct 2024 00:28:31 +0700 Subject: [PATCH] Cleanup: Remove reference to closed issue 7193 (#34039) Signed-off-by: Wulan Seruniati Salim --- components/script/dom/htmlinputelement.rs | 2 +- components/script/dom/htmltextareaelement.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/script/dom/htmlinputelement.rs b/components/script/dom/htmlinputelement.rs index 3ad69ef0918..16537b2478e 100644 --- a/components/script/dom/htmlinputelement.rs +++ b/components/script/dom/htmlinputelement.rs @@ -248,7 +248,7 @@ pub struct HTMLInputElement { size: Cell, maxlength: Cell, minlength: Cell, - #[ignore_malloc_size_of = "#7193"] + #[ignore_malloc_size_of = "TextInput contains an IPCSender which cannot be measured"] #[no_trace] textinput: DomRefCell>, // https://html.spec.whatwg.org/multipage/#concept-input-value-dirty-flag diff --git a/components/script/dom/htmltextareaelement.rs b/components/script/dom/htmltextareaelement.rs index 5505c5ced08..49e0cd204d5 100644 --- a/components/script/dom/htmltextareaelement.rs +++ b/components/script/dom/htmltextareaelement.rs @@ -50,7 +50,7 @@ use crate::textinput::{ #[dom_struct] pub struct HTMLTextAreaElement { htmlelement: HTMLElement, - #[ignore_malloc_size_of = "#7193"] + #[ignore_malloc_size_of = "TextInput contains an IPCSender which cannot be measured"] #[no_trace] textinput: DomRefCell>, placeholder: DomRefCell,