HTMLCollection::create returns live collections by default

This commit is contained in:
Bruno de Oliveira Abinader 2014-03-20 18:39:38 -04:00
parent a7f8d754d2
commit 3a8a0927e2
4 changed files with 13 additions and 26 deletions

View file

@ -81,7 +81,7 @@ impl HTMLFieldSetElement {
}
let node: JS<Node> = NodeCast::from(abstract_self);
let filter = ~ElementsFilter;
HTMLCollection::create_live(&window_from_node(&node), &node, ~filter)
HTMLCollection::create(&window_from_node(&node), &node, filter)
}
pub fn WillValidate(&self) -> bool {