mirror of
https://github.com/SerenityOS/serenity
synced 2026-05-01 03:47:48 +02:00
(cherry picked from commit 75216182c9a04741b2f773eb2f26ceb7a96bfbba) (cherry picked from commit 2a55ab13ef9c735a16674006a518c0e5acf7c88f) Co-authored-by: Sam Atkins <atkinssj@serenityos.org>
8 lines
272 B
Plaintext
8 lines
272 B
Plaintext
// 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);
|
|
};
|