diff options
Diffstat (limited to 'src/components/script/dom/document.rs')
-rw-r--r-- | src/components/script/dom/document.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/script/dom/document.rs b/src/components/script/dom/document.rs index 2a81d08f4a5..9190e36b0dd 100644 --- a/src/components/script/dom/document.rs +++ b/src/components/script/dom/document.rs @@ -212,8 +212,8 @@ impl Document { } // http://dom.spec.whatwg.org/#dom-document-getelementsbytagname - pub fn GetElementsByTagName(&self, tag: DOMString) -> JS<HTMLCollection> { - self.createHTMLCollection(|elem| elem.get().tag_name == tag) + pub fn GetElementsByTagName(&self, abstract_self: &JS<Document>, tag_name: DOMString) -> JS<HTMLCollection> { + HTMLCollection::by_tag_name(&self.window, &NodeCast::from(abstract_self), tag_name) } // http://dom.spec.whatwg.org/#dom-nonelementparentnode-getelementbyid |