Index: core/html/RadioNodeList.idl |
diff --git a/core/html/RadioNodeList.idl b/core/html/RadioNodeList.idl |
index 057ad06c0baca86207bdc7f5ce3328176b7e35fd..d1be414c61192199083039c3b09d86f0730561f1 100644 |
--- a/core/html/RadioNodeList.idl |
+++ b/core/html/RadioNodeList.idl |
@@ -23,9 +23,11 @@ |
* THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
-[ |
- NoInterfaceObject, |
-] interface RadioNodeList : NodeList { |
+// https://html.spec.whatwg.org/#radionodelist |
+ |
+interface RadioNodeList : NodeList { |
attribute DOMString value; |
- [ImplementedAs=item] getter Node (unsigned long index); |
+ |
+ // TODO(philipj): This should be inherited from NodeList. |
+ [ImplementedAs=item] getter Node? (unsigned long index); |
}; |