mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-25 11:48:06 +00:00
LibWeb: Add an empty DataTransferItemList IDL implementation
This commit is contained in:
parent
9e3c6921ab
commit
dcb76572e4
Notes:
github-actions[bot]
2024-08-19 11:31:01 +00:00
Author: https://github.com/trflynn89
Commit: dcb76572e4
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1111
7 changed files with 79 additions and 0 deletions
12
Userland/Libraries/LibWeb/HTML/DataTransferItemList.idl
Normal file
12
Userland/Libraries/LibWeb/HTML/DataTransferItemList.idl
Normal file
|
@ -0,0 +1,12 @@
|
|||
#import <HTML/DataTransferItem.idl>
|
||||
|
||||
// https://html.spec.whatwg.org/multipage/dnd.html#datatransferitemlist
|
||||
[Exposed=Window]
|
||||
interface DataTransferItemList {
|
||||
[FIXME] readonly attribute unsigned long length;
|
||||
[FIXME] getter DataTransferItem (unsigned long index);
|
||||
[FIXME] DataTransferItem? add(DOMString data, DOMString type);
|
||||
[FIXME] DataTransferItem? add(File data);
|
||||
[FIXME] undefined remove(unsigned long index);
|
||||
[FIXME] undefined clear();
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue