mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-11 02:29:21 +00:00
LibWeb: Implement DOMStringList
This commit is contained in:
parent
aa08e52548
commit
75216182c9
Notes:
github-actions[bot]
2024-07-29 09:19:56 +00:00
Author: https://github.com/jamierocks
Commit: 75216182c9
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/731
Reviewed-by: https://github.com/AtkinsSJ
9 changed files with 123 additions and 0 deletions
7
Userland/Libraries/LibWeb/HTML/DOMStringList.idl
Normal file
7
Userland/Libraries/LibWeb/HTML/DOMStringList.idl
Normal 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);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue