diff options
Diffstat (limited to 'components/script/dom/customevent.rs')
-rw-r--r-- | components/script/dom/customevent.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/customevent.rs b/components/script/dom/customevent.rs index a020b7ef5cd..17e8bfdd4a7 100644 --- a/components/script/dom/customevent.rs +++ b/components/script/dom/customevent.rs @@ -17,7 +17,6 @@ use util::str::DOMString; // https://dom.spec.whatwg.org/#interface-customevent #[dom_struct] -#[derive(HeapSizeOf)] pub struct CustomEvent { event: Event, #[ignore_heap_size_of = "Defined in rust-mozjs"] @@ -85,4 +84,3 @@ impl<'a> CustomEventMethods for &'a CustomEvent { event.InitEvent(type_, can_bubble, cancelable); } } - |