diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index bbcf3514734..2a4f70fdf95 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -78,7 +78,6 @@ pub enum IsHTMLDocument { #[privatize] pub struct Document { node: Node, - reflector_: Reflector, window: JS, idmap: RefCell>>>, implementation: MutNullableJS, @@ -301,7 +300,6 @@ impl Document { Document { node: Node::new_without_doc(DocumentNodeTypeId), - reflector_: Reflector::new(), window: JS::from_rooted(window), idmap: RefCell::new(HashMap::new()), implementation: Default::default(),