Add some dom node tree implementations

This commit is contained in:
Ilyong Cho 2013-09-05 12:36:29 +09:00
parent ae0d531dd6
commit 995e4fdd11

View file

@ -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 {