aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/node.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2015-10-30 06:37:44 +0530
committerbors-servo <lbergstrom+bors@mozilla.com>2015-10-30 06:37:44 +0530
commit00b60b93860d32e1c5aaf0f9b4a2ce5110880652 (patch)
tree7758f97aedfc0fad86b1ee58c8a3ba0e4c976931 /components/script/dom/node.rs
parentb6bcccb204f710665482fa8098084a30126a3bac (diff)
parent4a4f041948f38818d9616125c1639e1431327d09 (diff)
downloadservo-00b60b93860d32e1c5aaf0f9b4a2ce5110880652.tar.gz
servo-00b60b93860d32e1c5aaf0f9b4a2ce5110880652.zip
Auto merge of #8250 - wenderen:8246-remove-get-rooted, r=Ms2ger
remove get_rooted() and replace all references to it with references … …to get() for #8246 <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/8250) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/node.rs')
-rw-r--r--components/script/dom/node.rs20
1 files changed, 10 insertions, 10 deletions
diff --git a/components/script/dom/node.rs b/components/script/dom/node.rs
index 8aa54aafd2a..18c40157514 100644
--- a/components/script/dom/node.rs
+++ b/components/script/dom/node.rs
@@ -248,11 +248,11 @@ impl Node {
assert!(new_child.next_sibling.get().is_none());
match before {
Some(ref before) => {
- assert!(before.parent_node.get_rooted().r() == Some(self));
+ assert!(before.parent_node.get().r() == Some(self));
let prev_sibling = before.GetPreviousSibling();
match prev_sibling {
None => {
- assert!(Some(*before) == self.first_child.get_rooted().r());
+ assert!(Some(*before) == self.first_child.get().r());
self.first_child.set(Some(new_child));
},
Some(ref prev_sibling) => {
@@ -293,7 +293,7 @@ impl Node {
///
/// Fails unless `child` is a child of this node.
fn remove_child(&self, child: &Node) {
- assert!(child.parent_node.get_rooted().r() == Some(self));
+ assert!(child.parent_node.get().r() == Some(self));
let prev_sibling = child.GetPreviousSibling();
match prev_sibling {
None => {
@@ -670,7 +670,7 @@ impl Node {
let doc = self.owner_doc();
let node = try!(doc.r().node_from_nodes_and_strings(nodes));
// Step 2.
- let first_child = self.first_child.get_rooted();
+ let first_child = self.first_child.get();
Node::pre_insert(node.r(), self, first_child.r()).map(|_| ())
}
@@ -1818,7 +1818,7 @@ impl NodeMethods for Node {
// https://dom.spec.whatwg.org/#dom-node-parentnode
fn GetParentNode(&self) -> Option<Root<Node>> {
- self.parent_node.get_rooted()
+ self.parent_node.get()
}
// https://dom.spec.whatwg.org/#dom-node-parentelement
@@ -1842,22 +1842,22 @@ impl NodeMethods for Node {
// https://dom.spec.whatwg.org/#dom-node-firstchild
fn GetFirstChild(&self) -> Option<Root<Node>> {
- self.first_child.get_rooted()
+ self.first_child.get()
}
// https://dom.spec.whatwg.org/#dom-node-lastchild
fn GetLastChild(&self) -> Option<Root<Node>> {
- self.last_child.get_rooted()
+ self.last_child.get()
}
// https://dom.spec.whatwg.org/#dom-node-previoussibling
fn GetPreviousSibling(&self) -> Option<Root<Node>> {
- self.prev_sibling.get_rooted()
+ self.prev_sibling.get()
}
// https://dom.spec.whatwg.org/#dom-node-nextsibling
fn GetNextSibling(&self) -> Option<Root<Node>> {
- self.next_sibling.get_rooted()
+ self.next_sibling.get()
}
// https://dom.spec.whatwg.org/#dom-node-nodevalue
@@ -2360,7 +2360,7 @@ impl VirtualMethods for Node {
self.children_count.set(added.len() as u32);
},
}
- if let Some(list) = self.child_list.get_rooted() {
+ if let Some(list) = self.child_list.get() {
list.as_children_list().children_changed(mutation);
}
}