From 1108510d22e15b9704edcc54c68a835843f6e9dc Mon Sep 17 00:00:00 2001 From: Corey Farwell Date: Mon, 11 Jan 2016 21:42:54 -0500 Subject: [PATCH] Link to tracking issue for redundant codegen getter https://github.com/servo/servo/issues/5875 --- components/script/dom/htmlformcontrolscollection.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/script/dom/htmlformcontrolscollection.rs b/components/script/dom/htmlformcontrolscollection.rs index 2b9b3060a86..be6c72b2d2e 100644 --- a/components/script/dom/htmlformcontrolscollection.rs +++ b/components/script/dom/htmlformcontrolscollection.rs @@ -53,7 +53,8 @@ impl HTMLFormControlsCollectionMethods for HTMLFormControlsCollection { } // FIXME: This shouldn't need to be implemented here since HTMLCollection (the parent of - // HTMLFormControlsCollection) implements IndexedGetter + // HTMLFormControlsCollection) implements IndexedGetter. + // https://github.com/servo/servo/issues/5875 // // https://dom.spec.whatwg.org/#dom-htmlcollection-item fn IndexedGetter(&self, index: u32, found: &mut bool) -> Option> {