diff options
author | Wulan Seruniati Salim <103485830+wulanseruniati@users.noreply.github.com> | 2024-10-29 00:28:31 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-10-28 17:28:31 +0000 |
commit | d3e0efbc21cc4480a4779be36c8a4268e3939cbc (patch) | |
tree | eca2799f8816d534f32a20fdfde5b06d5ee88c18 | |
parent | 83cd349163f1599b0dce7ec89f5225f242378618 (diff) | |
download | servo-d3e0efbc21cc4480a4779be36c8a4268e3939cbc.tar.gz servo-d3e0efbc21cc4480a4779be36c8a4268e3939cbc.zip |
Cleanup: Remove reference to closed issue 7193 (#34039)
Signed-off-by: Wulan Seruniati Salim <wulanseruniati@gmail.com>
-rw-r--r-- | components/script/dom/htmlinputelement.rs | 2 | ||||
-rw-r--r-- | 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<u32>, maxlength: Cell<i32>, minlength: Cell<i32>, - #[ignore_malloc_size_of = "#7193"] + #[ignore_malloc_size_of = "TextInput contains an IPCSender which cannot be measured"] #[no_trace] textinput: DomRefCell<TextInput<ScriptToConstellationChan>>, // 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<TextInput<ScriptToConstellationChan>>, placeholder: DomRefCell<DOMString>, |