forked from mirrors/gecko-dev
I also had to implement the NamedGetter for HTMLFormControlsCollection as well, since that's the only consumer of RadioNodeList and I wanted to see which wpt test passes. Source-Repo: https://github.com/servo/servo Source-Revision: 0c5591a8ec3daf5fb6e415d7225c523466fdf1f0
10 lines
544 B
Text
10 lines
544 B
Text
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
// https://html.spec.whatwg.org/multipage/#htmlformcontrolscollection
|
|
interface HTMLFormControlsCollection : HTMLCollection {
|
|
// inherits length and item()
|
|
getter (RadioNodeList or Element)? namedItem(DOMString name); // shadows inherited namedItem()
|
|
};
|