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/. */
5
6[Exposed=(Window,System)]
7interface IDBMutableFile : EventTarget {
8  readonly attribute DOMString name;
9  readonly attribute DOMString type;
10
11  readonly attribute IDBDatabase database;
12
13  [Throws, UseCounter]
14  IDBFileHandle open(optional FileMode mode = "readonly");
15
16  [Throws, UseCounter]
17  DOMRequest getFile();
18
19  attribute EventHandler onabort;
20  attribute EventHandler onerror;
21};
22