diff options
Diffstat (limited to 'src/components/script/dom/node.rs')
-rw-r--r-- | src/components/script/dom/node.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/components/script/dom/node.rs b/src/components/script/dom/node.rs index e2db42afe80..a6cf77d0c19 100644 --- a/src/components/script/dom/node.rs +++ b/src/components/script/dom/node.rs @@ -1056,13 +1056,6 @@ impl Reflectable for Node<ScriptView> { fn mut_reflector<'a>(&'a mut self) -> &'a mut Reflector { self.eventtarget.mut_reflector() } - - fn GetParentObject(&self, _cx: *JSContext) -> Option<@mut Reflectable> { - match self.parent_node { - Some(node) => Some(unsafe {node.as_cacheable_wrapper()}), - None => None - } - } } // This stuff is notionally private to layout, but we put it here because it needs |