Index: core/fileapi/FileList.idl |
diff --git a/core/fileapi/FileList.idl b/core/fileapi/FileList.idl |
index e7e296a87c6dbd4e2461bad1e8c83cc7c5825b87..9bbd8a5897f9c0945a216ae84852dd00c4f2ac36 100644 |
--- a/core/fileapi/FileList.idl |
+++ b/core/fileapi/FileList.idl |
@@ -23,10 +23,12 @@ |
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
*/ |
+// https://w3c.github.io/FileAPI/#filelist-section |
+ |
[ |
Exposed=(Window,Worker), |
- WillBeGarbageCollected |
+ GarbageCollected |
] interface FileList { |
+ getter File? item(unsigned long index); |
readonly attribute unsigned long length; |
- getter File item(unsigned long index); |
}; |