mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:17:45 +00:00
LibWeb: Add FileList from the FileAPI spec
This commit is contained in:
parent
162e4179fc
commit
ffab9fb44e
6 changed files with 106 additions and 0 deletions
5
Userland/Libraries/LibWeb/FileAPI/FileList.idl
Normal file
5
Userland/Libraries/LibWeb/FileAPI/FileList.idl
Normal file
|
@ -0,0 +1,5 @@
|
|||
[Exposed=(Window,Worker), Serializable]
|
||||
interface FileList {
|
||||
getter File? item(unsigned long index);
|
||||
readonly attribute unsigned long length;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue