LibWeb: Implement DOMStringList

This commit is contained in:
Jamie Mansfield 2024-07-14 12:31:50 +01:00 committed by Andreas Kling
commit 75216182c9
Notes: github-actions[bot] 2024-07-29 09:19:56 +00:00
9 changed files with 123 additions and 0 deletions

View file

@ -0,0 +1,7 @@
// https://html.spec.whatwg.org/multipage/common-dom-interfaces.html#domstringlist
[Exposed=(Window,Worker)]
interface DOMStringList {
readonly attribute unsigned long length;
getter DOMString? item(unsigned long index);
boolean contains(DOMString string);
};