LibWeb: Convert HTMLCollection to use IDL special operations

This commit is contained in:
Luke Wilde 2021-09-26 15:14:37 +01:00 committed by Andreas Kling
commit 37347cbcb6
Notes: sideshowbarker 2024-07-18 03:25:51 +09:00
6 changed files with 72 additions and 42 deletions

View file

@ -1,8 +1,8 @@
[CustomGet]
[Exposed=Window, LegacyUnenumerableNamedProperties]
interface HTMLCollection {
readonly attribute unsigned long length;
Element? item(unsigned long index);
Element? namedItem(DOMString name);
getter Element? item(unsigned long index);
getter Element? namedItem(DOMString name);
};