diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-07-25 11:39:20 -0600 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-07-25 11:39:20 -0600 |
commit | 705c95dedbbaa60ffd08e70579915e228d5b6ee0 (patch) | |
tree | 4cbafee85f191cfbd96986b4d520610adb27a26c /components/script/dom/element.rs | |
parent | 8edf1a5ecdecc9f6de8210fc875cff3679fda09e (diff) | |
parent | 7b40cc9fd7ea4dcc3816be0cb1ad6543bb5c88e0 (diff) | |
download | servo-705c95dedbbaa60ffd08e70579915e228d5b6ee0.tar.gz servo-705c95dedbbaa60ffd08e70579915e228d5b6ee0.zip |
Auto merge of #6660 - nox:children-changed, r=jdm
Introduce VirtualMethods::children_changed()
This virtual method mimics the behaviour of mutation observers and make it more viable than the older child_inserted(), which didn't cover removed nodes and was called as many times as there were inserted nodes.
A few other shortcomings where remove_child() was called directly instead of Node::remove() were also fixed while at it.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6660)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/element.rs')
-rw-r--r-- | components/script/dom/element.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/element.rs b/components/script/dom/element.rs index 0fb55d0ff82..dd6afd3061b 100644 --- a/components/script/dom/element.rs +++ b/components/script/dom/element.rs @@ -866,9 +866,9 @@ impl<'a> AttributeHandlers for &'a Element { fn get_attribute(self, namespace: &Namespace, local_name: &Atom) -> Option<Root<Attr>> { let mut attributes = RootedVec::new(); self.get_attributes(local_name, &mut attributes); - attributes.iter() - .map(|attr| attr.root()) - .find(|attr| attr.r().namespace() == namespace) + attributes.r().iter() + .find(|attr| attr.namespace() == namespace) + .map(|attr| Root::from_ref(*attr)) } // https://dom.spec.whatwg.org/#concept-element-attributes-get-by-name |