From 93e539d6366651f38d4b198e28ef042e6ebfb1be Mon Sep 17 00:00:00 2001 From: Bruno de Oliveira Abinader Date: Tue, 11 Feb 2014 09:45:05 -0400 Subject: [PATCH] Fixed FIXME message as pointed out by jdm --- src/components/script/dom/element.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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, ~[]) }