Bumping manifests a=b2g-bump
[gecko.git] / dom / webidl / IDBMutableFile.webidl
blobf5b275c21dbfc2523e69e5d1bcbe7ee6e25fdef3
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 IDBMutableFile : EventTarget {
7   readonly attribute DOMString name;
8   readonly attribute DOMString type;
10   readonly attribute IDBDatabase database;
12   [Throws]
13   IDBFileHandle open(optional FileMode mode = "readonly");
15   [Throws]
16   DOMRequest getFile();
18   attribute EventHandler onabort;
19   attribute EventHandler onerror;