Skip to content

Commit

Permalink
remove unused static collection
Browse files Browse the repository at this point in the history
  • Loading branch information
vectorijk committed Aug 16, 2015
1 parent e74825f commit d853aab
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions components/script/dom/htmlcollection.rs
Expand Up @@ -25,8 +25,7 @@ pub trait CollectionFilter : JSTraceable {
#[derive(JSTraceable)]
#[must_root]
pub enum CollectionTypeId {
Static(Vec<JS<Element>>),
Live(JS<Node>, Box<CollectionFilter + 'static>)
Live(JS<Node>, Box<CollectionFilter+'static>)
}

#[dom_struct]
Expand Down Expand Up @@ -181,7 +180,6 @@ impl<'a> HTMLCollectionMethods for &'a HTMLCollection {
// https://dom.spec.whatwg.org/#dom-htmlcollection-length
fn Length(self) -> u32 {
match self.collection {
CollectionTypeId::Static(ref elems) => elems.len() as u32,
CollectionTypeId::Live(ref root, ref filter) => {
let root = root.root();
HTMLCollection::traverse(root.r())
Expand All @@ -195,8 +193,6 @@ impl<'a> HTMLCollectionMethods for &'a HTMLCollection {
fn Item(self, index: u32) -> Option<Root<Element>> {
let index = index as usize;
match self.collection {
CollectionTypeId::Static(ref elems) => elems
.get(index).map(|t| t.root()),
CollectionTypeId::Live(ref root, ref filter) => {
let root = root.root();
HTMLCollection::traverse(root.r())
Expand All @@ -215,11 +211,6 @@ impl<'a> HTMLCollectionMethods for &'a HTMLCollection {

// Step 2.
match self.collection {
CollectionTypeId::Static(ref elems) => elems.iter()
.map(|elem| elem.root())
.find(|elem| {
elem.r().get_string_attribute(&atom!("name")) == key ||
elem.r().get_string_attribute(&atom!("id")) == key }),
CollectionTypeId::Live(ref root, ref filter) => {
let root = root.root();
HTMLCollection::traverse(root.r())
Expand Down

0 comments on commit d853aab

Please sign in to comment.