Bug 1634779 - pt 2. Partially revert Bug 1603006 r=kmag
[gecko.git] / dom / webidl / IDBMutableFile.webidl
blobe7d037066ad0ab5cac9cd80e52ebd549e9cb1498
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 [Exposed=Window]
7 interface IDBMutableFile : EventTarget {
8   readonly attribute DOMString name;
9   readonly attribute DOMString type;
11   readonly attribute IDBDatabase database;
13   [Throws, UseCounter]
14   IDBFileHandle open(optional FileMode mode = "readonly");
16   attribute EventHandler onabort;
17   attribute EventHandler onerror;