uncomment the named getter from HTMLFormElement.webidl

This commit is contained in:
Chintan Gandhi 2019-11-27 10:37:32 -05:00
parent a020522f37
commit f73e1453ca

View file

@ -29,7 +29,7 @@ interface HTMLFormElement : HTMLElement {
[SameObject] readonly attribute HTMLFormControlsCollection elements;
readonly attribute unsigned long length;
getter Element? (unsigned long index);
//getter (RadioNodeList or Element) (DOMString name);
getter (RadioNodeList or Element) (DOMString name);
void submit();
[CEReactions]