diff --git a/src/components/script/dom/element.rs b/src/components/script/dom/element.rs index bce4095d5f1..29b7588e2b9 100644 --- a/src/components/script/dom/element.rs +++ b/src/components/script/dom/element.rs @@ -476,19 +476,19 @@ impl Element { // http://dom.spec.whatwg.org/#dom-element-getelementsbytagname pub fn GetElementsByTagName(&self, _localname: DOMString) -> @mut HTMLCollection { - // FIXME: https://github.com/mozilla/servo/issues/1662 + // FIXME: stub - https://github.com/mozilla/servo/issues/1660 HTMLCollection::new(self.node.owner_doc().document().window, ~[]) } // http://dom.spec.whatwg.org/#dom-element-getelementsbytagnamens pub fn GetElementsByTagNameNS(&self, _namespace: Option, _localname: DOMString) -> Fallible<@mut HTMLCollection> { - // FIXME: https://github.com/mozilla/servo/issues/1662 + // FIXME: stub - https://github.com/mozilla/servo/issues/1660 Ok(HTMLCollection::new(self.node.owner_doc().document().window, ~[])) } // http://dom.spec.whatwg.org/#dom-element-getelementsbyclassname pub fn GetElementsByClassName(&self, _names: DOMString) -> @mut HTMLCollection { - // FIXME: https://github.com/mozilla/servo/issues/1662 + // FIXME: stub - https://github.com/mozilla/servo/issues/1660 HTMLCollection::new(self.node.owner_doc().document().window, ~[]) }