Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / HTMLAllCollection.webidl
blob433ad2aa522c2f2fffe36f7e9a9ed0b810c414bd
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 /* Emulates undefined through Codegen.py. */
6 interface HTMLAllCollection {
7   readonly attribute unsigned long length;
8   getter Node? (unsigned long index);
9   Node? item(unsigned long index);
10   (Node or HTMLCollection)? item(DOMString name);
11   legacycaller (Node or HTMLCollection)? (DOMString name);
12   getter (Node or HTMLCollection)? namedItem(DOMString name);