diff options
author | João Oliveira <hello@jxs.pt> | 2015-08-25 16:38:56 +0100 |
---|---|---|
committer | João Oliveira <hello@jxs.pt> | 2015-08-27 01:17:48 +0100 |
commit | fd87c8cb3ee5ac2be258e0420420c228299c90e3 (patch) | |
tree | 6d6730c8c4a21a40fb9651894cd64b650444f56f /components/script/dom/htmldataelement.rs | |
parent | af4c3901d88b12eba89201f5ff1eb99a80b81061 (diff) | |
download | servo-fd87c8cb3ee5ac2be258e0420420c228299c90e3.tar.gz servo-fd87c8cb3ee5ac2be258e0420420c228299c90e3.zip |
make dom_struct derive HeapSizeOf,
closes #7357
Diffstat (limited to 'components/script/dom/htmldataelement.rs')
-rw-r--r-- | components/script/dom/htmldataelement.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/dom/htmldataelement.rs b/components/script/dom/htmldataelement.rs index 915f5d32b02..6e74d8fa9f9 100644 --- a/components/script/dom/htmldataelement.rs +++ b/components/script/dom/htmldataelement.rs @@ -13,7 +13,6 @@ use dom::node::{Node, NodeTypeId}; use util::str::DOMString; #[dom_struct] -#[derive(HeapSizeOf)] pub struct HTMLDataElement { htmlelement: HTMLElement } @@ -43,4 +42,3 @@ impl HTMLDataElement { Node::reflect_node(box element, document, HTMLDataElementBinding::Wrap) } } - |