aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webidls/HTMLFormControlsCollection.webidl
diff options
context:
space:
mode:
authorKeith Yeung <kungfukeith11@gmail.com>2016-01-22 22:44:48 -0500
committerKeith Yeung <kungfukeith11@gmail.com>2016-01-28 18:33:51 -0500
commit4229b68062a603a14a63952c0e010de3b0145c15 (patch)
tree587fc33a4beecb63c1dd524608ead8b3d2601ca4 /components/script/dom/webidls/HTMLFormControlsCollection.webidl
parent9e3af70941c74eed41f47ff13d0fc7cfd2300403 (diff)
downloadservo-4229b68062a603a14a63952c0e010de3b0145c15.tar.gz
servo-4229b68062a603a14a63952c0e010de3b0145c15.zip
Implement NamedItem and NamedGetter on HTMLFormControlsCollection
Diffstat (limited to 'components/script/dom/webidls/HTMLFormControlsCollection.webidl')
-rw-r--r--components/script/dom/webidls/HTMLFormControlsCollection.webidl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/HTMLFormControlsCollection.webidl b/components/script/dom/webidls/HTMLFormControlsCollection.webidl
index c4a26c7b20c..0e81285575b 100644
--- a/components/script/dom/webidls/HTMLFormControlsCollection.webidl
+++ b/components/script/dom/webidls/HTMLFormControlsCollection.webidl
@@ -6,5 +6,5 @@
// https://html.spec.whatwg.org/multipage/#htmlformcontrolscollection
interface HTMLFormControlsCollection : HTMLCollection {
// inherits length and item()
- // getter (RadioNodeList or Element)? namedItem(DOMString name); // shadows inherited namedItem()
+ getter (RadioNodeList or Element)? namedItem(DOMString name); // shadows inherited namedItem()
};