diff options
Diffstat (limited to 'components/script/dom/htmlcollection.rs')
-rw-r--r-- | components/script/dom/htmlcollection.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/htmlcollection.rs b/components/script/dom/htmlcollection.rs index f9a6ba38350..71d57d94005 100644 --- a/components/script/dom/htmlcollection.rs +++ b/components/script/dom/htmlcollection.rs @@ -160,7 +160,7 @@ impl HTMLCollection { HTMLCollection::create(window, root, box ElementChildFilter) } - fn elements_iter(&self) -> HTMLCollectionElementsIter { + pub fn elements_iter(&self) -> HTMLCollectionElementsIter { let ref filter = self.collection.1; let root = self.collection.0.root(); let mut node_iter = root.traverse_preorder(); @@ -173,7 +173,7 @@ impl HTMLCollection { } } -struct HTMLCollectionElementsIter<'a> { +pub struct HTMLCollectionElementsIter<'a> { node_iter: TreeIterator, root: Root<Node>, filter: &'a Box<CollectionFilter>, |