servo: Merge #7361 - make dom_struct derive HeapSizeOf (from jxs:master); r=Ms2ger

closes #7357

Source-Repo: https://github.com/servo/servo
Source-Revision: 532fd19d69fd11d06bca7539c722a46fab2c4419
This commit is contained in:
João Oliveira
2015-08-27 02:35:45 -06:00
parent b28635142e
commit 086230053e
155 changed files with 3 additions and 226 deletions

View File

@@ -21,7 +21,6 @@ use util::str::DOMString;
// https://dom.spec.whatwg.org/#documentfragment
#[dom_struct]
#[derive(HeapSizeOf)]
pub struct DocumentFragment {
node: Node,
}
@@ -96,4 +95,3 @@ impl<'a> DocumentFragmentMethods for &'a DocumentFragment {
root.query_selector_all(selectors)
}
}