Bumped HTMLCollection interface to latest

Spec:
http://dom.spec.whatwg.org/#interface-htmlcollection

This is a sub-task for #1662.
This commit is contained in:
Bruno de Oliveira Abinader 2014-02-11 12:11:28 -04:00
parent cdec81ea4f
commit 6cf0eb1115
2 changed files with 36 additions and 15 deletions

View file

@ -10,6 +10,5 @@
interface HTMLCollection {
readonly attribute unsigned long length;
getter Element? item(unsigned long index);
[Throws]
getter object? namedItem(DOMString name); // only returns Element
getter Element? namedItem(DOMString name);
};