Merge m-c to b2g-inbound.
[gecko.git] / dom / webidl / FileHandle.webidl
blob5e8212a6284447cd0013a9f1570ede1ca6cdb2ff
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 interface LockedFile;
8 interface FileHandle : EventTarget {
9   readonly attribute DOMString name;
10   readonly attribute DOMString type;
12   [Throws]
13   LockedFile open(optional FileMode mode = "readonly");
15   [Throws]
16   DOMRequest getFile();
18   attribute EventHandler onabort;
19   attribute EventHandler onerror;