diff options
Diffstat (limited to 'components/script/dom/raredata.rs')
-rw-r--r-- | components/script/dom/raredata.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/raredata.rs b/components/script/dom/raredata.rs index 9d4a82d63d6..1a4916f1694 100644 --- a/components/script/dom/raredata.rs +++ b/components/script/dom/raredata.rs @@ -47,7 +47,9 @@ pub struct ElementRareData { pub custom_element_state: CustomElementState, /// The "name" content attribute; not used as frequently as id, but used /// in named getter loops so it's worth looking up quickly when present + #[no_trace] pub name_attribute: Option<Atom>, /// The client rect reported by layout. + #[no_trace] pub client_rect: Option<LayoutValue<Rect<i32>>>, } |