Skip to content

Commit

Permalink
Add some dom node tree implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
ILyoan committed Sep 10, 2013
1 parent ae0d531 commit 995e4fd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/script/dom/node.rs
Expand Up @@ -499,19 +499,19 @@ impl Node<ScriptView> {
}

pub fn GetFirstChild(&self) -> Option<AbstractNode<ScriptView>> {
None
self.first_child
}

pub fn GetLastChild(&self) -> Option<AbstractNode<ScriptView>> {
None
self.last_child
}

pub fn GetPreviousSibling(&self) -> Option<AbstractNode<ScriptView>> {
None
self.prev_sibling
}

pub fn GetNextSibling(&self) -> Option<AbstractNode<ScriptView>> {
None
self.next_sibling
}

pub fn GetNodeValue(&self) -> DOMString {
Expand Down

0 comments on commit 995e4fd

Please sign in to comment.