fune/servo/components/script/dom/webidls/HTMLFormControlsCollection.webidl
Anthony Ramine 2553a29dd4 servo: Merge #11232 - Update the WebIDL parser (from nox:webidl); r=Ms2ger
Source-Repo: https://github.com/servo/servo
Source-Revision: 51c279ec3d191fa376268c1417d3fa763cb3382f
2016-05-18 03:31:02 -07:00

9 lines
464 B
Text

/* 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()
};