diff options
author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2016-07-25 23:10:15 +0200 |
---|---|---|
committer | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2016-07-27 02:06:26 +0200 |
commit | cf9fd7eb46fae5bdd50d9ec568ad3cfa1a58d832 (patch) | |
tree | 4a5056cddb0b19b3c58ab9a965c3e854123a39ff /components/script/dom/htmlcollection.rs | |
parent | 2de3b119a961942943280fa280c50a7a814de583 (diff) | |
download | servo-cf9fd7eb46fae5bdd50d9ec568ad3cfa1a58d832.tar.gz servo-cf9fd7eb46fae5bdd50d9ec568ad3cfa1a58d832.zip |
Add DeleteRow method
Diffstat (limited to 'components/script/dom/htmlcollection.rs')
-rw-r--r-- | components/script/dom/htmlcollection.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/htmlcollection.rs b/components/script/dom/htmlcollection.rs index 798d0731b2c..95134556bc0 100644 --- a/components/script/dom/htmlcollection.rs +++ b/components/script/dom/htmlcollection.rs @@ -248,7 +248,7 @@ impl<'a> Iterator for HTMLCollectionElementsIter<'a> { .filter_map(Root::downcast) .filter(|element| filter.filter(&element, root)) .next() - } + } } impl HTMLCollectionMethods for HTMLCollection { |