diff options
Diffstat (limited to 'components/script/dom/htmlbodyelement.rs')
-rw-r--r-- | components/script/dom/htmlbodyelement.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/htmlbodyelement.rs b/components/script/dom/htmlbodyelement.rs index 7ebaf11c26c..03766c06ecc 100644 --- a/components/script/dom/htmlbodyelement.rs +++ b/components/script/dom/htmlbodyelement.rs @@ -35,7 +35,6 @@ use time; const INITIAL_REFLOW_DELAY: u64 = 200_000_000; #[dom_struct] -#[derive(HeapSizeOf)] pub struct HTMLBodyElement { htmlelement: HTMLElement, background_color: Cell<Option<RGBA>>, @@ -183,4 +182,3 @@ impl VirtualMethods for HTMLBodyElement { } } } - |