2018-09-13 22:30:51 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-09-06 00:49:53 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
|
|
* You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
|
|
|
* http://dev.w3.org/2006/webapi/FileAPI/
|
|
|
|
*
|
|
|
|
* Copyright © 2012 W3C® (MIT, ERCIM, Keio), All Rights Reserved. W3C
|
|
|
|
* liability, trademark and document use rules apply.
|
|
|
|
*/
|
|
|
|
|
2017-01-26 19:57:59 +03:00
|
|
|
[Exposed=(Window,Worker)]
|
2012-09-06 00:49:53 +04:00
|
|
|
interface FileList {
|
2016-04-12 15:51:52 +03:00
|
|
|
getter File? item(unsigned long index);
|
2012-09-06 00:49:53 +04:00
|
|
|
readonly attribute unsigned long length;
|
|
|
|
};
|