mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-16 16:12:53 +00:00
6 lines
204 B
Text
6 lines
204 B
Text
// https://w3c.github.io/FileAPI/#filelist-section
|
|
[Exposed=(Window,Worker), Serializable]
|
|
interface FileList {
|
|
getter File? item(unsigned long index);
|
|
readonly attribute unsigned long length;
|
|
};
|